优先级:就近原则
行内式
<!--行内样式-->
<h1 style="color: indianred">我是标题</h1>
内部式
<!--内部样式-->
<style>
h1{
color: aqua;
}
</style>
外部式与导入式
<!--外部样式-->
<link rel="stylesheet" href="style.css">
<!--导入式 @import是CSS2.1特有的-->
<style>
@import url("css/style.css");
</style>
h1{
color: #532777;
}