天天看点

导入方式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
<!--内部样式-->
    <style>
        h1{
            color: red;
        }
    </style>

</head>
<body>
<!--行内样式-->
<h1>大笨猪</h1>

</body>
</html>
      
<!--总结:行内样式>内部样式>外部样式-->

      
<!--导入方式-->
    <style>
        @import "style.css";
    </style>
标签选择器
      

类选择器

导入方式
导入方式

id选择器

导入方式
导入方式