The h6 html tag
In HTML h tags stand for heading and this is split into 6 different h tags (h1, h2, h3, h4, h5 and h6). By default it is displayed as bold and much smaller version of the body text. As with all h tags it is considered important for SEO.When text is put between the opening and closing <h6> tag it is displayed as a Small heading. Unlike <h1> a <h6> tag can be used multiple times on a webpage as its job is to be the heading for a web pages sub topics. The <h6> tag is not used often due to 5 other h tags being available.
Basic Usage
<h6>Smallest header text</h6>
Any text between the opening and closing tag will be displayed as a very small heading.
Advance Usage
It is possible to style and add functionality to the <h6> tag, this is done by adding an attribute to after the h6 in the opening <h6> tag
Attributes allowed for the <h6>tag include :-class, dir, id, lang, style and title.
In most cases class and id are used and its basic usage is shown below
<h6 id=”header”>Smallest header text</h6>
With all attributes there is a space after the initial h6 then the attribute name, then an equal’s sign and the identifier of the attribute in double quotes.
Both id and class attributes refer to CSS styling of the element and is either stored in the <head> of the webpage on in an external file.
With id this usually refers to a single instance on a page where as class usually refers to a repeating element on a page, it is for this reason for the <h6> tag the class attribute is nearly always used over the id attribute although in practice it makes no difference.
The attribute style allows you to include css style information for a single <h6> tag.
The dir attribute allows for left reading and right reading text, lang allows you to specify a language for the tag and title allows you to include extra information for a tag.
It is possible to attach scripts to tags, as well adding functionality to a webpage, these scripts tend to be written in Javascript and therefore outside the scope of this document
Examples
<h6>Smallest header text</h6> – basic usage example.
<h6 id=”header”>Smallest header text</h6> – heading 6 which is styled by the id header.
<h6 class=”headerclass”> Smallest header text </h6> – heading 6 which is styled by the class headerclass.
<h6 id =”header” class=”headerclass”> Smallest header text </h6> – heading 6 which is styled by the class headerclass and the id header.
<h6 style=”color:#F00″>Smallest header text</h6> – heading 6 which has a custom colour of red.
<h6 dir=”rtl”>Smallest header text</h6> – heading 6 where the text reads from right to left.
<h6 lang=”uk”>Smallest header text</h6> – heading 6 where the language has been tagged as UK.
<h6 title=”ptitle”>Smallest header text</h6> – heading 6 where the tag has been titled ptitle.
Final Thoughts
Touching on just the surface of the <h6> HTML tag it is easy to see how versatile it is. To take full advantage of it an understanding of CSS is an advantage.