<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- 外部样式表 -->
<link rel="stylesheet" href="./07my.css">
</head>
<body>
<p>11111</p>
<!-- 行内样式表 -->
<div style="color: aqua; font-size: large;">这是div标签</div>
</body>
</html>
/**/
p {
color:brown;
}