Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>练习</title>
<!-- title 上的图标-->
<link rel="icon" href="./img/title.png">
<!-- 2秒后跳转 京东-->
<meta http-equiv="refresh" content="2;url=https://www.jd.com" />
<!-- 2秒后刷新-->
<meta http-equiv="refresh" content="2"/>
<!-- 搜索关键字-->
<meta name="keywords" content="练习,作业"/>
<!-- 网站描述-->
<meta name="description" content="这是练习作业"/>
</head>
<body>
<p>这是一段话</p>
<b>加粗文字</b>
<strong>加粗文字</strong>
<em>强调某段文本斜体</em>
<i>斜体字</i>
<!--换行-->
<br />
<!--横线-->
<hr />
<u>下划线</u>
<del>删除线</del>
<h1>H1</h1>
<h2>H2</h2>
<h3>H3</h3>
<h4>H4</h4>
<h5>H5</h5>
<h6>H6</h6>
H<sub>2</sub>0
<br>
x<sup>2</sup>
<br>
<details>
<summary>详细说明</summary>
<h1>你打开后想看到什么</h1>
</details>
<pre>
原格式 输出
内容是怎么样就是怎么样:
不会变化样式
</pre>
<mark>高亮显示背景色</mark>
<hr>
<ul>
<li>无序标签1</li>
<li>无序标签2</li>
<li>无序标签3</li>
</ul>
<ol>
<li>有序标签</li>
<li>HELLO</li>
<li>WORD</li>
</ol>
<dl>
<dt><img src="./img/girl.png" alt="小女孩.png"></dt>
<dd>这个是对上面的dt释义</dd>
</dl>
<br>
<a href="http://www.baidu.com">跳转到百度</a>
<br>
<!--进度条-->
<progress ></progress>
<br>
<!--进度条2-->
<meter style="width: 200px" value="30" max="100" min="1"></meter>
</body>
</html>
`