W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <style> /* 默认的 CSS 值 */ code { font-family: monospace; } </style> </head> <body> <p>默认情况下,code 元素会这样显示:</p> <code>A piece of computer code</code> <p>自定义的 code 元素(更改 font-family):</p> <code style="font-family:Impact;">A piece of computer code</code> </body> </html>