HTML Heading Tags with Examples and Syntax

HTML Heading Tags Explain  Structure

HTML Heading Tags with Examples and Syntax

Html Heading tag

HTML headings define headings in a document.

✷ html heading tag <H1> to <H6>  use to define heading or a title for different sections of your web page.

✷ 6 HTML heading tags are the <h1> most important and <h6> is less important.

<h1>

<h2>

<h3>

<h4>

<h5>

<h6>


HTML Heading Tags Explain Structure

 <!DOCTYPE html>

 <html><body>
<h1>Heading 1</h1>
 <h2>Heading 2</h2>
 <h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
 <h6>Heading 6</h6>
</body>
</html>

HTML Heading Tags Explain Structure
Explain Program

Step 1 ]

<!DOCTYPE html>

  •  document type declaration.
  • browser help this is an HTML5 document.

Step 2 ]  

<html> ... </html>

  • root element of the HTML document.
  • <html> tag is part of the web page.

Step 3 ]  

<body> ... </body>

  • HTML document that holds visible content on the page.
  • anything  contains type inside <body> will be display the browser

Step 4]  

<h1> heading  1 large  (use main title your page title)
<h2>  heading2 smaller than <h1> tag 
<h3> heading 3 smaller than <h2> tag 
<h4> heading4 smaller than<h3> tag
<h5> heading5 smallest 
<h6> heading6 smallest


HTML Heading Tags Explain Structure 
OUTPUT

HTML Heading Tags with Examples and Syntax


Related Post :- 

how to use the pre tag in html with example

html paragraph tag

html table cellpadding attribute

Comments

Popular posts from this blog

HTML Tag

CSS Text Color Explained with Syntax and HTML Examples

html script tag attributes

CSS text-emphasis-color Property

HTML Input Type Submit Syntax and Example

CSS Padding Property Explained

How to Display T Pattern in C with Star (*) – Step-by-Step