基本列表
ul、ol 和 li 元素。
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Basic lists</title>
</head>
<body>
<ul>
<li>This</li>
<li>That</li>
<li>The Other</li>
</ul>
<ol>
<li>The first thing</li>
<li>The second thing</li>
<li>The third thing</li>
</ol>
<!-- Link back to HTML Dog: -->
<p><a href="https://htmldog.cn/examples/"><img src="https://htmldog.cn/badge1.gif" alt="HTML Dog"></a></p>
</body>
</html>
