<!DOCTYPE html> <!--声明格式-->
<html lang="en">
<head>
<meta charset="UTF-8"> <!--编码 国际-->
<title>8.10照打</title>
<link rel="stylesheet" type="text/css" href="8.10.css"> <!--引用CSS--> <!--外部样式 为了共享-->
<link rel="shortcut icon" type="imag/x-icon" href="imges/footlogo.png"> <!--引用小 图-->
<style type="text/css"> /*内部样式 只针对当前页面*/
/*tag标签名,id名(名字前加 #),class名。 属性选择器*/
body{ }/*标记选择器*/
#box{width: 100px; height: 100px; background: deeppink;}/*id选择器*/
.main{ width: 100px; height: 100px; background: black;}/*class选择器 类*/
a{color: blueviolet;}
a[href="http://www.php.cn/"]{ color: black;}
a[href="demo2.html"]{ color: deeppink;}
div a{color: aqua}
</style>
</head>
<body ><!--内联样式 外部>内部>内联 --><!--style="background: aliceblue"-->
<img src="">
<a href="https://www.baidu.com/">百度</a>
<a href="http://www.php.cn/">php中文网</a>
<a href="demo2.html">demo2</a>
<div class="main">
<a href="">PHP</a>
</div>
<div></div>
<div></div>
</body>
</html>