网页设计之路(5)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<h1 >列表练习</h1>
<ul type="circle">
<li>apple</li>
<li>pear</li>
<li>orange</li>
</ul>
<ol start="1" type="I">
<li > w</li>
<li> e</li>
</ol>
<dl >
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl><!--自定义的列表,带有解释部分,-->
<ol>
<li>i</li>
<li>a
<ul>
<li>
ii
</li>
<li>
wp</li>
</ul>


</li>
</ol>
</body>
</html>

这是关于列表的练习,有点混乱,不过以后会有条理的。

原文地址:https://www.cnblogs.com/chufengpeng/p/4003303.html