引入
内联样式
<p style="color:blue;margin-left:20px;">这是一个段落。</p>
1
内部样式表
<head>
<style type="text/css">
body {background-color:yellow;}
p {color:blue;}
</style>
</head>
1
2
3
4
5
6
外部样式表
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
1
2
3