EXPLAIN
<h1>
to
<h6>
tag
Answers
Answered by
3
Answer:
Explanation:
First, let us understand what these tags mean, in html.
These tags are called the heading tags, without any italics, emphasis or bold. They need to be added additionally, and we have different tags for it as well.
The <h1> tag is the largest size heading, and continues till H6, at the latest.
Application :
<html>
<head>
<title> ABCD </title>
</head>
<body>
<h1> My heading </h1>
<h2> My heading </h2>
<h3> My heading </h3>
--- continued till
<h6> My heading </h6>
</body>
</html>
Note that these are container tags, that means it needs to be ended with the slash tag as well, else won't give the satisfactory results. [tex [/tex]
Similar questions