Things you want to know about websites

 

Headings

Headings are an important part of any text layout. They highlights the subject of the text by putting an extra emphasis on it.

If you are keen about better search positions with search engines then you should make good use of headings because search engines give extra credit to your headings than your text while indexing your site.

There are 6 heading styles available in Html, which are defined by <h1> to <h6> tags.

 

Example

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

will result in,

This is heading 1

This is heading 2

This is heading 3

This is heading 4

This is heading 5
This is heading 6

Bookmark or Add to Favourites

Next :

Html-Paragraphs

Related:

Html-Formatting

Link to this page :

Copy and paste the following code in an html document to link to this page,