Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

เราจะรวมส่วนในเอกสาร HTML ได้อย่างไร


หากต้องการเพิ่มส่วน ให้ใช้แท็ก

ใน 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>