Home  >  Article  >  Web Front-end  >  How can we include a section in HTML document?

How can we include a section in HTML document?

PHPz
PHPzforward
2023-09-09 20:57:031088browse

How can we include a section in HTML document?

To add a section, use the

tag in HTML. You can try running the following code to include a section in your HTML document -

Example

<!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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete