1.行内样式
例如:<p style=””>CSS内容</p>
2.内嵌式
例如:<style type=”text/css”>
<!--
p{
color:red:
……;
}
-->
</style>
<body>
<p>CSS内容</p>
</body>
3.链接式
例如:<link href=”example.css” tyle=”text/css” rel=”stylesheet”>
4.导入样式
例如:<style type=”text/css”>
<--
@import url(example.css);
-->
</style>