x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
body {
7
background-color: #d0e4fe;
8
}
9
10
h1 {
11
color: orange;
12
text-align: center;
13
}
14
15
p {
16
font-family: "Times New Roman";
17
font-size: 20px;
18
}
19
</style>
20
</head>
21
22
<body>
23
24
<h1>CSS 实例!</h1>
25
<p>这是一个段落。</p>
26
27
</body>
28
</html>