What Is The HTML Headings
HTML Headings are titles or subtitles that you need to show on a page.
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
HTML Headings
HHTML headings are characterized with the <h1>
to <h6>
labels.
<h1>
defines the most important heading. <h6>
defines the least important heading.
Example
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
Headings Are Important
Web crawlers utilize the headings to file the construction and content of your site pages.
Clients regularly skim a page by its headings. Use headings to show the archive structure
<h1>
headings should be used for main headings, followed by <h2>
headings, then the less important <h3>
, and so on.
Bigger Headings
Each HTML heading has a default size. Notwithstanding, you can determine the size for any heading with the style trait, utilizing the CSS text dimension property:
Example
<h1 style=”font-size:60px;”>Heading 1</h1>
HTML Tag Reference
Examples’ tag reference contains additional information about these tags and their attributes.
Tag | Description |
---|---|
<html> | Defines the root of an HTML document |
<body> | Defines the document’s body |
<h1> to <h6> | Defines HTML headings |