The h5 html tag

Overview

In HTML h tags stand for heading and this is split into 6 different h tags (h1, h2, h3, h4, h5 and h6). The <h5> tag itself is considered to be a smaller repeating sub header for a webpage. By default it is displayed as bold and 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 <h5> tag it is displayed as a Small heading. Unlike <h1> a <h5> tag can be used multiple times on a webpage as its job is to be the heading for a web pages sub topics.

Basic Usage

<h5>Small header text</h5>

Any text between the opening and closing tag will be displayed as a small heading.

Advance Usage

It is possible to style and add functionality to the <h5> tag, this is done by adding an attribute to after the h5 in the opening <h5> tag

Attributes allowed for the <h5>tag include :-class, dir, id, lang, style and title.

In most cases class and id are used and its basic usage is shown below

<h5 id=”header”>Small header text</h5>

With all attributes there is a space after the initial h5 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 <h5> 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 <h5> 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

<h5>Small header text</h5> – basic usage example.

<h5 id=”header”>Small header text</h5> – heading 5 which is styled by the id header.

<h5 class=”headerclass”> Small header text </h5> – heading 5 which is styled by the class headerclass.

<h5 id =”header” class=”headerclass”> Small header text </h5> – heading 5 which is styled by the class headerclass and the id header.

<h5 style=”color:#F00″>Small header text</h5> – heading 5 which has a custom colour of red.

<h5 dir=”rtl”>Small header text</h5> – heading 5 where the text reads from right to left.

<h5 lang=”uk”>Small header text</h5> – heading 5 where the language has been tagged as UK.

<h5 title=”ptitle”>Small header text</h5> – heading 5 where the tag has been titled ptitle.

Final Thoughts

Touching on just the surface of the <h5> HTML tag it is easy to see how versatile it is. To take full advantage of it an understanding of CSS is an advantage.