Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:
例如:<h2>PHP中文网</h2>
~<h1 style="color: blue;">PHP中文网</h1>~
<h1>晚上好</h1>
<h1>吃了吗</h1>
<h1>xxx</h1>
<style>
h1{
color: blue;
}
</style>
<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>自定义样式来源与优先级</title>
<style>
@import url('static/style.css');
</style>
</head>
例如:<h2 style="color: red;">PHP中文网</h2>
<div style="color: blue;">
<h1 style="color: red;">php.cn</h1>
</div>