参考:https://www.runoob.com/html/html-css.html
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
background-color: yellow;
}
p {
color: white;
;
background-color: blueviolet;
}
pre {
color: red;
background-color: green;
}
</style>
</head>
<body>
<pre>
随便写文字
没有啥
</pre>
<p>测试一行</p>
</body>
</html>
结果: