How to create heading tags in HTML.

Heading type is very important for any website. HTML also 6 types of headings available every one different size.

  1. <h1> - Heading one
  2. <h2> - Heading two
  3. <h3> - Heading three
  4. <h4> - Heading four
  5. <h5> - Heading five
  6. <h6> - Heading six

Now we are checking the Heading Tags program in HTML.

<html>
 <head>
 <title>Coding Request</title>
 </head>
 <body>
    <h1>Heading one</h1>
    <h2>Heading two</h2>
    <h3>Heading three</h3>
    <h4>Heading four</h4>
    <h5>Heading five</h5>
    <h6>Heading six</h6>
 </body>
</html>

Coding View in Notepad++

Noteped++ Download link here https://notepad-plus-plus.org/downloads/


Image 1

Some coding meaning here

  • <title>.............</title> - Your title place
  • <h1>...............</h1> - Heading place

Result view in browser

Image 2

C:/Users/MUNZIR/Document/Hello.html  this is our programme file path. You need more information check the practical video.

Practical Video





Tags

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.