HTML heading tags overview.



HTML heading <h> tag

Every document is represented with the heading. Heading tag is the head of every document that show the whole about document. In HTML heading has six types of headings.

h1, h2, h3, h4, h5, h6

Example:
HTML Document:
<html> <head> <title>This is Heading</title> </head> <body> <h1>This is h1 heading.</h1> <h2>This is h1 heading.</h2> <h3>This is h1 heading.</h3> <h4>This is h1 heading.</h4> <h5>This is h1 heading.</h5> <h6>This is h1 heading.</h6> </body> </html>


Output:

This is h1 heading.

This is h2 heading.

This is h3 heading.

This is h4 heading.

This is h5 heading.
This is h6 heading.


Comments

Popular posts from this blog

What is HTML ? Html definition by GoldoCodes.

Learn Programming Languages on GoldoCodes Every Day