Table of Contents
HTML HEADINGS
Heading Tag kya hai
HTML में Heading का Use Webpages के लिए Title और Subtitle बनाने के लिए किया जाता है. HTML में Heading का Use Text को Bold करने या Text का Size बड़ा करने के लिए नहीं करते.
HTML में 6 Headings का Use किया जाता है – h1, h2, h3, h4, h5 और h6. इसमें h1 सबसे बड़ी Heading और h6 सबसे छोटी Heading होती है.
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
HTML में Headings का Use करने से Search Engine को Webpages का Structure समझने और उन्हें Index करने में Help मिलती है.
Syntax
Content
Content
Content
Content
Example
Here, We Write Main Heading of Page.
h1 is the most important heading, which is used to display the keyword of page.
This is first sub-heading
h2 describes the first sub heading of page.
This is Second sub-heading
h3 describes the second sub heading of page.
There are 6 Heading h1 to h6 tag to use the different sub-heading with their paragraphs.
Result
Big Heading with Style Attribute
सभी HTML Headings का एक Default और निश्चित Size होता है. यदि हम Headings का Size Increase करना चाहते हैं तो Style Attribute के साथ Font-Size Property का Use किया जाता है.
Example
Here, We Write Main Heading of Page.
This is an Example of Font-size Property with style attribute.
Result