एक अनुभाग जोड़ने के लिए, HTML में <अनुभाग> टैग का उपयोग करें। आप HTML दस्तावेज़ में किसी अनुभाग को शामिल करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!DOCTYPE html> <html> <head> <title>HTML Section Tag</title> </head> <body> <section> <h1>Java</h1> <h3>Inheritance</h3> <p>Inheritance defines the relationship between superclass and subclass.</p> </section> </body> </html>