Important Notice:

Course Content
Heading Tag / Paragraph Tag
0/2
Horizontal Rules (HR element)
0/1
Font Element
0/1
Image Element
0/1
HTML Basic (Chapter 3) M2-R5.1
About Lesson
Heading Tag:-

                      HTML heading, का उपयोग Webpage में Title और Subtitle Display करने के लिए किया जाता हैं। HTML में कुल 6 तरह की heading का उपयोग किया जाता हैं।ये heading h1 से h6 तक होती है। h1 सबसे Important heading होती हैं, क्योंकि h1 की size सबसे बड़ी होती हैं। HTML में Heading का क्रमांक h1 > h2 > h3 > h4 > h5 > h6 होता हैं।: –

  • <h1> …… </h1>
  • <h2> …… </h2>
  • <h3> …… </h3>
  • <h4> …… </h4>
  • <h5> …… </h5>
  • <h6> …… </h6>

Note : –

  1. <h1>……</h1> सबसे बड़ा हेडिंग टैग है और <h6>…….</h6> सबसे छोटा है।
  2. Heading एक नई लाइन से शुरू करके वेब पेजों पर अपनी लाइन प्राप्त करता है।.
  3. Align attribute specifies the alignment of the specified heading. The options for alignment are: center, left, right.

example:-<h1 align=”center”>

Heading Tag:-

                        HTML defines six levels of headings, numbered from 1 to 6 with 1 being the largest and 6 is the smallest. All these headings are displayed in larger and bolder font then normal text. Heading defines the format and structure of a document. There are six heading tag: –

  • <h1> …… </h1>
  • <h2> …… </h2>
  • <h3> …… </h3>
  • <h4> …… </h4>
  • <h5> …… </h5>
  • <h6> …… </h6>

Any text inside these tags is displayed differently depending on the heading number.

Note : –

  1. <h1>…… </h1> is largest heading tag and <h6>……. </h6> is smallest.
  2. Heading get their own line on the web pages by starting from a new line.
  3. Align attribute specifies the alignment of the specified heading. The options for alignment are: center, left, right.

example:- <h1 align=”center”>

error: Content is protected !!