CSS - 引入方法
1. 外部样式表
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
2. 内部样式表
<head>
<style type="text/css">
p {
margin: 10px;
}
</style>
</head>
3. 内嵌样式(可在动态效果中同 JavaScript 一同使用)
<p style="color: red">Sample Text</p>