Introduction To HTML Heading Tags

Among the HTML codings, HTML Heading is the first and most important to make the contains many seizes. With this tag you can make your writings tiny, small, big, large etc. It's so easy and simple to set up this code in the HTML file. In the HTML file the headings are shown with <h1>----- </h1>,  <h2>-----</h2>,  <h3>-----</h3>,   <h4>-----</h4>,  <h5>-----</h5> and  <h6>-----</h6>.


Follow the coding to make the headings...

<html>
<body>

<h1>This is heading number 1  </h1>
<h2>This is heading number 2  </h2>
<h3>This is heading number 3  </h3>
<h4>This is heading number 4  </h4>
<h5>This is heading number 5  </h5>
<h6>This is heading number 6  </h6>

</body>
</html>

 You can practise yourself to be expert in it.




No comments:

Post a Comment