我们如何在HTML文档中包含一个部分?

要添加部分,请使用HTML中的<section>标记。您可以尝试运行以下代码以在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>