首页 > 文章列表 > 我们如何在HTML文档中包含一个部分?

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

引入(Include) HTML片段(HTMLSnippet) 文档插入(DocumentInsertion)
116 2023-09-16

要添加部分,请使用 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>