> ## CSS语法
~~~
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>demo</title>
<style>
body
{
background-color:#d0e4fe;
}
h1
{
color:orange;
text-align:center;
}
p
{
font-family:"Times New Roman";
font-size:20px;
}
</style>
</head>
<body>
<h1>这是一个标题</h1>
<p>这是一个段落。</p>
</body>
</html>
~~~
> #### 参数注释:
background-color = 背景颜色
color = 颜色
text-align = 控制文本水平方向对齐
font-family = 规定元素的字体系列
font-size = 字体大小px、%为单位
> #### 代码诠释:
body标签 设置背景为淡蓝色
h1标签 设置字体颜色为橙色
h1标签 设置字体水平居中
p标签 设置字体种类
p标签 设置字体大小为20像素