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