To know about html headings
 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.
 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.
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
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. |
Â