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

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


ใช้แท็ก

เพื่อเพิ่มส่วนในเอกสาร แท็ก HTML
ใช้สำหรับกำหนดส่วนของเอกสารของคุณ ด้วยแท็ก div คุณสามารถจัดกลุ่มองค์ประกอบ HTML ส่วนใหญ่เข้าด้วยกันและจัดรูปแบบด้วย CSS

ตัวอย่าง

คุณสามารถลองใช้รหัสต่อไปนี้เพื่อสร้างส่วน -

<!DOCTYPE html>
<html>
   <head>
      <title>HTML div Tag</title>
   <link rel = "stylesheet" href = "style2.css">
   </head>
   <body>
      <div id = "contentinfo">
         <p>Welcome to our website. We provide tutorials on various subjects.</p>
      </div>
   </body>
</html>

ต่อไปนี้เป็นไฟล์ css style2.css

#contentinfo p {
   line-height: 20px;
   margin: 30px;
   padding-bottom: 20px;
   text-align: justify;
   width: 140px;
   color: red;
}