HTML <center> ตามแบบ
HTML5 ไม่สนับสนุน
<center>
ตามที่ใช้ใน HTML4 ในการระบบศูนย์กลางข้อความ
ใช้อะไรแทน?
ตัวอย่าง 1
การระบบศูนย์กลางข้อความ (ใช้ CSS):
<html> <head> <style> h1 {text-align: center;} p {text-align: center;} div {text-align: center;} </style> </head> <body> <h1>นี่คือข้อหัว</h1> <p>นี่คือปารากราฟ。</p> <div>นี่คือ div。</div> </body> </html>