References

Collection of references for web development.

HTML h3 tag

Description

The HTML <h3> element represents a heading, <h1> being the highest and <h6> being the lowest.

Example

<h1>This is heading 1</h1>
<h2>This is heading 1</h2>
<h3>This is heading 1</h3>
<h4>This is heading 1</h4>
<h5>This is heading 1</h5>
<h6>This is heading 1</h6>