运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> /* Default CSS Values */ h1 { display: block; font-size: 2em; margin-top: 0.67em; margin-bottom: 0.67em; margin-left: 0; margin-right: 0; font-weight: bold; } </style> </head> <body> <p>An h1 element is displayed like this:</p> <h1>This is heading 1</h1> <p>A customized h1 element (changed font-weight):</p> <h1 style="font-weight:normal;">This is heading 1</h1> </body> </html>