Markup Tags

Sr.No. Topics
1
HTML
2
HEAD
3
TITLE
4
BODY
5
Headings
6
Paragraphs
7
Lists
8
Preformatted Text
9
Extended Quotations
10
Forced Line Breaks/Postal Addresses
11
Horizontal Rules

 

Headings

HTML has six levels of headings, numbered 1 through 6, with 1 being the largest. Headings are typically displayed in larger and/or bolder fonts than normal body text. The first heading in each document should be tagged <H1>.

The syntax of the heading element is:
<Hy>Text of heading</Hy>
where y is a number between 1 and 6 specifying the level of the heading.

Do not skip levels of headings in your document. For example, don't start with a level-one heading (<H1>) and then next use a level-three (<H3>) heading.