Heading Element:->
- There are six heading elements
(<H1>, <H2>, <H3>, <H4>, <H5>, <H6>).
- All the six heading elements are container tag and requires a closing tag.
- <h1> will print the largest heading
- <h6> will print the smallest heading
<html>
<head>
<title> Heading </title>
</head>
<body>
<h1> Master Programming Tutorials </h1>
<h2> Master Programming Tutorials </h2>
<h3> Master Programming Tutorials </h3>
<h4> Master Programming Tutorials </h4>
<h5> Master Programming Tutorials </h5>
<h6> Master Programming Tutorials </h6>
</body>
</html>
OUPUT
good work
ReplyDelete