HTML label tag example
This Blog You Will Learn
ஃ What is the <label> Tag
ஃ Syntax of HTML <label> ta
ஃ HTML label tag example
ஃ Output
ஃ What is the <label> Tag
ஃ Syntax of HTML <label> ta
ஃ HTML label tag example
ஃ Output
ஃ what is the <dialog> element
ஃ Advantage of HTML Dialog Box
ஃ Syntax of HTML <dialog> tag
ஃ Explain Program
ஃ Explain Program
ஃ What is the <textarea> in HTML?
ஃWhen Should you use <textarea> tag ?
ஃ Syntax of HTML <textarea> tag
ஃ Summary
ஃExplain Program
ஃOutput
How To Use The HTML <img> Tag
ஃ What is the <imag> tag?
ஃ Syntax of HTML <img im> tag
ஃ How to Write HTML TAG
ஃ How src Works
ஃ Important Rules for alt
ஃ Explain Program
ஃ Output
How to create Nested lists in HTML
ஃ What is a Nested List in HTML
ஃ HTML <ul> tag
ஃ Type of Bullets
ஃ Syntax of HTML <ul> tag
ஃ Explain Program
ஃ Output
ஃ What is the <sup> tag
ஃ Syntax of HTML <sub>. . .</sub> tag
ஃ Explain Program
ஃ Output
ஃ What is the <kbd> tag ?
ஃ Why USe the <kbd> tag?
ஃ Syntax of HTML <kbd> tag
ஃ Explain Program
ஃ Output
ஃ What is CSS comment tag
ஃ Why use comments in CSS?
ஃ Best Practices
ஃ Syntax
ஃ Explain Program
ஃ Output
ஃ What is the <footer>tag
ஃ What is the search input type
ஃ What is the <caption> tag
ஃ Why the <caption> tag important.
ஃ Why USe The <caption> tag
ஃ Syntax of HTML <Caption> tag
ஃ Explain Program
ஃ Output
ஃ What is the <section> tag
ஃ what is the <iframe> tag?
ஃ what is the use of thead tag in html
ஃ Why use the <thead> tag
ஃ How the <thead> tag works
ஃ Syntax thead tag
ஃ Advantages of using <thead>tag
ஃ Explain Program
ஃ Output
This Blog You Will Learn
ஃ What is input type=" date" in HTML
ஃ How it Works input type="date" in HTML
ஃ Syntax
ஃ Explain Program
ஃ Output
ஃWhat is the datetime Attribute
ஃ Why Use the datetime Attribute
ஃ When to use the datetime Attribute
ஃ Syntax
ஃ Explain Program
ஃ Output
This Blog You Will Learn
ஃWhat is the HTML <TR> Tag
ஃWhy Use the <tr> Tag.
ஃ Syntax of HTML <tr> tag
ஃExplain Program
ஃOutput
✅ html<title> tag most important element in html.
✅html <title> tag specifies the title of html document and represents the page name shown the browser and search engines
✔ shows page name in browser tabs.
✔ user identify open tabs.
✔ SEO improves search engine optimization
✔ clickable headline in search results
✔ helps bookmarking pages
<!DOCTYPE html>
ஃ what is the dl tag in html
ஃ Syntax of HTML <dl> tag
ஃ Explain Program
ஃ Output
Step 1]
<!DOCTYPE html>
This declare the document type.
browser that the document is written in html
ஃ What is the HTML <br> Tag
ஃ Syntax of HTML <br> tag
ஃ Explain Program
ஃ Output
ஃ What is the <body> tag ?
ஃ Why the <body> Tag
ஃ Syntax of HTML <body> tag
ஃ Explain Program
ஃ Output
what is the use of big tags in html
ஃ What is the <big> Tag
ஃ Syntax of HTML <big> tag
ஃ Explain Program
ஃ Output
What Is the HTML <bdo> Tag
Syntax of HTML <bdo> tag
Step 1]
<!DOCTYPE html>
This declare the document type.
browser that the document is written in html
Step 2 ]
<html>.... . </html>
html is the root element of the html page.
Every thing inside it is part of the webpage.
Step 3]
<head>.....</head>
head section contain metadata about the webpage information
for the browser not display on the webpage.
Step 4]
<h1> bdo Tag html </h1>
webpage displays a heading with the text.
bdo tag html overrides the natural direction of the text.
<h1> is largest heading size.
Step 5]
<bdo dir="ltr">webdesigningtheory.blogspot.com</bdo><br>
<bdo> stands for Bi-Directional Override.
allows you to force direction which text is displayed.
<dir="ltr">......</bdo> mean show content from Left to Right
Step 6]
<bdo dir="rtl">webdesigningtheory.blogspot.com </bdo>
<dir="rtl">
show text Right to Left.(reversed starting from right side)
Step 7]
<br>
line break move the next text to new line.
Step 8]
closing the Tag