首页
HTML
HTML 可访问性
试用: 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>