<section>
टैग क्या है?
<section>
टैग HTML5 का एक Semantic टैग है, जिसका उपयोग किसी वेबपेज के कंटेंट को अलग-अलग सेक्शनों (भागों) में बांटने के लिए किया जाता है।
✅ एक थीम या टॉपिक से जुड़े कंटेंट को ग्रुप करने के लिए उपयोग किया जाता है।
✅ यह सर्च इंजन (SEO) और एक्सेसिबिलिटी को बेहतर बनाता है।
✅ <section>
के अंदर हेडिंग (<h1>
- <h6>
) और पैराग्राफ (<p>
) हो सकते हैं।
✅ <article>
, <div>
, <aside>
आदि टैग्स से अलग यह स्पष्ट रूप से एक थीमेटिक सेक्शन बनाता है।
उदाहरण:
<!DOCTYPE html>
<html>
<head>
<title>HTML Online Course</title>
</head>
<body>
<section>
<h2>HTML Basics</h2>
<p>Learn the fundamentals of HTML, including tags, attributes, and structure.</p>
</section>
<section>
<h2>CSS Styling</h2>
<p>Understand how to style your website using CSS properties and layouts.</p>
</section>
</body>
</html>
HTML Basics
Learn the fundamentals of HTML, including tags, attributes, and structure.
CSS Styling
Understand how to style your website using CSS properties and layouts.