Pages

Subscribe:

About

HTML Header Tag Or Headling

HTML Header Tag Or Headling:

There are six header tags:

  • H1
  • H2
  • H3
  • H4
  • H5
  • H6


FirstnameLastname

<html>
<body>

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

</body>
</html>
This is heading 1
This is heading 2
This is heading 3
This is heading 4
This is heading 5

In the previous code example:
  • < > means start tag and </ > end tag.
  • The text between <h1> and </h1> Fort Bold and size 24.
  • The text between <h2> and </h2> Fort Bold and size 18.
  • The text between <h3> and </h3> Fort Bold and size 13.5
  • The text between <h4> and </h4> Fort Bold and size 13.5
  • The text between <h5> and </h5> Fort Bold and size 10
  • The text between <h6> and </h6> Fort Bold and size 7.


0 comments:

Post a Comment