what is the dl tag in html
what is the dl tag in html
Syntax
Syntax of HTML <dl> tag
.
.
Example
what is the dl tag in html
Explain Program
Step 1]
<!DOCTYPE html>
This declare the document type.
browser that the document is written in html
what is the dl tag in html
Syntax
Syntax of HTML <dl> tag
Step 1]
<!DOCTYPE html>
This declare the document type.
browser that the document is written in html
How to create table tag in html

<!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]
<style> tag is use to write css inside the HTML file.
Syntax of HTML <Pre> tag
Step 1]
<!DOCTYPE html>
This declare the document type.
browser that the document is written in html
Syntax of HTML <Br> 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]
<body>.....</body>
<body> tag contains all the visible content of the page.
inside <body> show the browser screen.
Step 4]
<h2> Web designing theory blogspot.com</h2>
<h2> level 2 heading tag.
this line displays web designing theory blogspot .com heading bold & larger font.
Step 5]
<p>.....</p>
<p> is paragraph tag use regular text.
inside <p> treated as paragraph.
<br >
<br> tag line break tag.
Step 6]
closing the Tag
<!DOCTYPE html> → Declares HTML5
<html> → Starts HTML document
<body> → Contains visible content
<h2> → Heading
<p> → Paragraph
<br> → Line break
</body> and </html> → Close body and HTML
<body> tag is the part of html document that contains all the content that appears on the webpage.
webpage use anything see text, videos, images, link, buttons, forms inside the <body> tag.
Syntax
Syntax of HTML <body> 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]
<body>.....</body>
<body> tag contains all the visible content of the page.
inside <body> show the browser screen.
Step 4]
<h2> Web designing theory blogspot.com</h2>
<h2> is heading tag.
displays text in a larger bold style.
headings from<h1> (largest) to <h6> (smallest).
Step 5]
<p>...</p>
<p> tag paragraph tag.
contains your normal text content.
<br>
<br> tag line break.
moves text to the next line inside a paragraph.
Step 6]
closing the Tag
what is the use of big tags in html
Syntax of HTML <big> 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]
<p> This is html paragraph text </p>
<p> stand for paragraph tag.
<p> displays text as normal paragraph with default spacing and formatting.
Step 5]
<big> This is html big tag text</big>
<big> makes text slightly larger than normal text.
<big> tag obsolute in html5 not be use modern web design.
Step 6]
closing the Tag
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