主頁
HTML
HTML 可訪問性
Tryit: HTML 語義
執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>Semantic HTML</h1> <p>Semantic HTML means using correct HTML elements for their correct purpose as much as possible.</p> <p>If you need a button, use the button element and not a div element:</p> <button>Report an Error</button> <div>Report an Error</div> <p>A button element has more suitable styling than a div, and it is clickable by default.</p> </body> </html>