To add a section, use the
<!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>
The above is the detailed content of How can we include a section in HTML document?. For more information, please follow other related articles on the PHP Chinese website!