<!DOCTYPE html>
<html>
<head>
<style>
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>