生成一个html页面显示为黄色的标题字体为Verdana并且段落会有一个20像素的字体大小。背景色为浅蓝色。
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
color: yellow;
font-family: Verdana;
}
<pre><code>p {
font-size: 20px;
}
body {
background-color: lightblue;
}
</code></pre>
</style>
</head>
<body>
<h1>This is a yellow title</h1>
<p>This is a paragraph with a font size of 20 pixels.</p>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/i7Op 著作权归作者所有。请勿转载和采集!