If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
HTML में heading या
HTML में 6 type की headings का use किया जाता है जिसे आप h1 , h2 ...... h6 तक लिख सकते हैं। जिसमे सबसे main heading <h1> और सबसे lowest heading <h6> होती है।
? Headings SEO में काफी important role play करती हैं इसलिए हर एक web page में headings का use करे। Web page के title को <h1> में लिखें और बाकि subheadings के लिए अलग - अलग heading tag का use करें।
Note : Page में <h1> का use सिर्फ एक बार ही करें तो ज्यादा सही रहेगा।
File : html_heafing_example.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML Heading Example</title>
</head>
<body>
<h1>Heading number 1</h1>
<h2>Heading number 2</h2>
<h3>Heading number 3</h3>
<h4>Heading number 4</h4>
<h5>Heading number 5</h5>
<h6>Heading number 6</h6>
</body>
</html>