ย่อหน้า HTML ใช้เพื่อสร้างองค์ประกอบย่อหน้าโดยใช้แท็ก
เป็นองค์ประกอบระดับบล็อก
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
<p>content</p>
ตัวอย่าง
ให้เราดูตัวอย่างของย่อหน้า HTML:
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background-color: #8BC6EC; background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%); text-align: center; } </style> <body> <h1>HTML Paragraphs</h1> <p>I'm a paragraph element with some dummy text.</p> </body> </html>
ผลลัพธ์