>>style.html
<!DOCTYPE HTML>
<html lang="en-US"><head>
<meta charset="UTF-8">
<title></title>
<!-- 引入外部样式 -->
<link rel="stylesheet" type="text/css" href="css/main.css">
<style type="text/css">
/*内嵌样式*/
a{color: yellow}
</style>
</head>
<body>
<!-- 行内样式 -->
<h1 style="color: red">标题</h1>
<!-- 外部样式 -->
<p>haha</p>
<!-- 内嵌样式 -->
<!-- 行内样式 -->
<a href="#" style="color: red">hhhhh</a>
</body>
</html>
>>main.css
h1{color: blue}
p{color: blue}
a{color: blue}