html heading tags | HTML हेडिंग टैग्स
HTML Heading Tags
HTML heading tags are used to define the headings or titles within a web page. They range from <h1>
to <h6>
, with <h1>
being the highest level and <h6>
the lowest level. These tags are used to indicate the hierarchical structure of the content, with <h1>
representing the main heading and subsequent levels representing subheadings.
Here's an overview of the HTML heading tags:
<h1>
: Represents the highest-level heading on a page.<h2>
: Represents a second-level heading, typically used for section titles.<h3>
: Represents a third-level heading, often used within subsections.<h4>
: Represents a fourth-level heading.<h5>
: Represents a fifth-level heading.<h6>
: Represents the lowest-level heading, usually used for minor headings or subpoints.
Here's an example that demonstrates the usage of heading tags:
html<h1>Main Heading</h1>
<h2>Subheading</h2>
<h3>Subheading within the subheading</h3>
In this example, <h1>
represents the main heading of the page, <h2>
represents a subheading, and <h3>
represents a subheading within the subheading.
Heading tags not only define the visual appearance of the text but also carry semantic meaning. Search engines and accessibility tools use the heading structure to understand the organization of content on a web page. Therefore, it's important to use heading tags appropriately and in a hierarchical manner to ensure proper document structure and accessibility.
In hindi
HTML Heading Tags
HTML हेडिंग टैग का उपयोग किसी वेब पेज के भीतर शीर्षकों या शीर्षकों को परिभाषित करने के लिए किया जाता है। इनकी सीमा <h1> से <h6> तक होती है, जिसमें <h1> उच्चतम स्तर और <h6> निम्नतम स्तर होता है। इन टैग का उपयोग सामग्री की पदानुक्रमित संरचना को इंगित करने के लिए किया जाता है, जिसमें <h1> मुख्य शीर्षक का प्रतिनिधित्व करता है और बाद के स्तर उपशीर्षक का प्रतिनिधित्व करते हैं।
यहां HTML शीर्षक टैग का अवलोकन दिया गया है:
<h1>: किसी पृष्ठ पर उच्चतम-स्तरीय शीर्षक का प्रतिनिधित्व करता है।
<h2>: दूसरे स्तर के शीर्षक का प्रतिनिधित्व करता है, आमतौर पर अनुभाग शीर्षकों के लिए उपयोग किया जाता है।
<h3>: तीसरे स्तर के शीर्षक का प्रतिनिधित्व करता है, जिसका उपयोग अक्सर उप-अनुभागों के भीतर किया जाता है।
<h4>: चौथे स्तर के शीर्षक का प्रतिनिधित्व करता है।
<h5>: पांचवें स्तर के शीर्षक का प्रतिनिधित्व करता है।
<h6>: निम्नतम-स्तरीय शीर्षक का प्रतिनिधित्व करता है, आमतौर पर छोटे शीर्षकों या उप-बिंदुओं के लिए उपयोग किया जाता है।
यहां एक उदाहरण दिया गया है जो शीर्षक टैग के उपयोग को दर्शाता है:
एचटीएमएल
कोड कॉपी करें
<h1>मुख्य शीर्षक</h1>
<h2>उपशीर्षक</h2>
<h3>उपशीर्षक के भीतर उपशीर्षक</h3>
इस उदाहरण में, <h1> पृष्ठ के मुख्य शीर्षक का प्रतिनिधित्व करता है, <h2> एक उपशीर्षक का प्रतिनिधित्व करता है, और <h3> उपशीर्षक के भीतर एक उपशीर्षक का प्रतिनिधित्व करता है।
शीर्षक टैग न केवल पाठ की दृश्य उपस्थिति को परिभाषित करते हैं बल्कि अर्थपूर्ण अर्थ भी रखते हैं। खोज इंजन और एक्सेसिबिलिटी उपकरण किसी वेब पेज पर सामग्री के संगठन को समझने के लिए शीर्षक संरचना का उपयोग करते हैं। इसलिए, उचित दस्तावेज़ संरचना और पहुंच सुनिश्चित करने के लिए शीर्षक टैग का उचित और श्रेणीबद्ध तरीके से उपयोग करना महत्वपूर्ण है।
Comments
Post a Comment