what is the dt tag in html
what is the dt tag in html
Syntax
Syntax of HTML <dt> tag
.
.
what is th tag in HTML
Example
what is the dt tag in html
Explain Program
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.
<h2>HTML dt tag </h2>
<h2> tag is a heading.
<h2> second level heading tag.
Step 4]
<p> easy to learn https://webdesigningtheory.blogspot.com/</p>
<p> tag Paragraph tag.
display the text.
Step 5]
<dl>
<dl> tag means Definition list.
<dl> tag use list terms and definition.
<dt>
<dt> tag stands for Definition term
<dl> tag represents a word defines in <dl> list .
<dt> tag use page will show list of term
Step 6]
Closing tag

