- HTML Basics
- HTML Home
- HTML Basics
- HTML Document Structure
- HTML Data Types
- HTML Attributes
- HTML Fonts
- HTML Headings
- HTML Character Entities
- HTML Horizontal Line
- HTML Line Break
- HTML Paragraph
- HTML Citation Definition
- HTML Quotations
- HTML Comments
- HTML Styles
- HTML Formatting
- HTML CSS
- HTML Tags
- HTML Basic Tags
- HTML All Tags
- HTML Root Tags
- HTML Metadata Tags
- HTML Section Tags
- HTML Head Heading Tags
- HTML Flow Tags
- HTML Phrasing Tags
- HTML Embedded Tags
- HTML Interactive Tags
- HTML Meta Tags
- HTML Texts
- HTML Text Formatting
- HTML Physical Style Text
- HTML Logical Style Text
- HTML Organizing Text
- HTML Arranging Text
- HTML Displaying Lists
- HTML List
- HTML Links Tables
- HTML Links URLs
- HTML Links
- HTML URL Encode
- HTML Tables
- HTML Images Colors
- HTML Images Colors
- HTML Images
- HTML Color Codes
- HTML Canvas
- HTML Backgrounds
- HTML Forms
- HTML Forms
- HTML Form Tag
- HTML Input Tag
- HTML Button Tag
- HTML Multiple-Choice
- HTML Select Tag
- HTML Option Tag
- HTML Optgroup Tag
- HTML Textarea Label
- HTML Fieldset Legend
- HTML Datalist Tag
- HTML Keygen Tag
- HTML Output Tag
- HTML Progress Tag
- HTML Meter Tag
- HTML Submit Form
- HTML enctype Attribute
- HTML action Attribute
- HTML Method Attribute
- HTML Get Method
- HTML Post Method
- HTML Interactive
- HTML Interactive Web
- HTML Details Summary
- HTML Menu Tag
- HTML Command Tag
- HTML KBD Tag
- HTML Time Tag
- HTML Multimedia
- HTML Multimedia
- HTML Multimedia Tags
- HTML Audio Video
- HTML Embedded Multimedia
- HTML EMBED Tag
- HTML OBJECT Tag
- HTML FIGURE FIGCAPTION
- HTML Advance
- HTML Blocks
- HTML Classes
- HTML Iframes
- HTML JavaScript
- HTML Layouts
- HTML Responsive
- HTML Test
- HTML Online Test
- Give Online Test
- All Test List
HTML Head and Heading Tags
In this tutorial, you will learn about HTML Head and Heading tags. Let's discuss about heading tags.
HTML Heading Tags
The HTML Heading tags are used to create headlines of a text. HTML provides the following six levels of heading:
- <H1>
- <H2>
- <H3>
- <H4>
- <H5>
- <H6>
The first level heading i.e. <H1> is the most important heading, and the last level heading i.e. <H6> is the least important heading.
Every articles have its own heading like if you are writing an article on the top 10 programming language, then you can give a heading to your article like Top 10 Programming Language
To learn more about HTML Headings, follow the separate tutorial on HTML Heading.
Example
Here is an example uses all the six levels of heading in HTML.
<!DOCTYPE html> <html> <head> <title>HTML Heading Tags Example</title> </head> <body> <h1>This is Level 1 Heading</h1> <h2>This is Level 2 Heading</h2> <h3>This is Level 3 Heading</h3> <h4>This is Level 3 Heading</h4> <h5>This is Level 5 Heading</h5> <h6>This is Level 6 Heading</h6> </body> </html>
Here is the sample output produced by the above HTML Heading tags example code:

HTML Head Tag
The HTML <HEAD> tag contains the metadata about the HTML document, which are not displayed by the browser, only used by the search engine to crawl information about the web page.
The HTML <HEAD> tag is placed between the <HTML> and <BODY> tag. Here are the tags, that you can include inside the HTML <HEAD> tag:
- <TITLE>
- <META>
- <BASE>
- <STYLE>
- <LINK>
- <SCRIPT>
- <NONSCRIPT>
To learn about these tags, refer to HTML Metadata Tags tutorial.
« Previous Tutorial Next Tutorial »