Home Tutorial Html Html5 HTML5 h6 tag, Introduction to <h6> tag in html5

 
 

HTML5 h6 tag, Introduction to <h6> tag in html5
Posted on: September 8, 2010 at 12:00 AM
In this illustration we will inform you about the use and implementation of <h6> tag in html5. The <h6> tag is used to specify the header of level6(lowest importance).

HTML5 h6 tag, Introduction to <h6> tag in html5

In this illustration we will inform you about the use and implementation of <h6> tag in html5. The <h6> tag is used to specify the header of level6(lowest importance). HTML5 have 6 levels of header (<h1> to <h6>). The importance of header is that it is decreases from h1 to h6. The each header is specific to the font and size of the text.  This tag must have opening <h6> tag and closing </h6> tag. This tag can not be used after the <address> tag.

Declaration Syntax:

 The syntax is as follows:

<h6>Heading Text</h6>

Example:h1_tag.html

<!DOCTYPE html>
<html>
  <head>
      <title>Example of h6 Tag</title>
  </head>
<body>
    <h6>
         Roseindia:
         We work on java technology
     </h6>
</body> 
</html>

Output:

 

Download This Example:

Difference between html4.01 and html5:

This tag don't have specific attribute. The "align" attribute is not supported in html5 instead of it we should use css.

Related Tags for HTML5 h6 tag, Introduction to <h6> tag in html5:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.