To know about html headings

Asked By 30 points N/A Posted on -
qa-featured

 Hello,

I want to know about html headings. What is that and how it works. Is there any feature about headings? And other character please describe.

SHARE
Best Answer by cathy emrald
Answered By 0 points N/A #163245

To know about html headings

qa-featured

Hi,

Heading is the most common tag in HTML language. Generally heading use to categorize the headline on the basis of important. Heading is pre specified characterized tag. Heading are 6 types those are h1, h2, h3, h4, h5, h6. Those have different feature in font size.

thanks

Best Answer
Best Answer
Answered By 5 points N/A #163246

To know about html headings

qa-featured

HTML Headings are very important in creating HTML documents. It is defined from <h1> to <H6> tags being <h1> as the most important and <h6> is the least. When indexing your html documents on search engines, they use your headings to index the structure and components of your web sites. It is also important to illustrate the structure of the documents. We use HTML heading tags to outline your website content, to improve SEO and to improve the accessibility of your web page. It works like this:

<h1>Heading 1</h1>   Heading 1
<h2>Heading 2</h2>   Heading 2
<h3>Heading 3</h3>   Heading 3
<h4>Heading 4</h4>   Heading 4
<h5>Heading 5</h5>  

Heading 5

 

<h1>Main Heading</h1>

 

Main Heading

<p>First paragraph content.</p>   First Paragraph content.
<h2>Sub Heading</h2>   Sub Heading
<p>Second paragraph content.</p>   Second paragraph content.

 

Related Questions