1
行内式
<h1 style=" color:white; background-color:blue">This is a line of Text.</h1>
2
内嵌式
<style type="text/css">
h1{
color:white;
background-color:blue
}
</style>
3
导入式
<style type="text/css">@import"mystyle.css";</style>
页面全装载完后再装载css
4
链接式
<link href="mystyle.css" rel="stylesheet" type="text/css"/>
在正式下载网页之前就已经把css装载入浏览器了,一开始显示的效果就是按css来的
内嵌样式表>内部样式表>外部样式表