<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>列表</title>
</head>
<!--
列表
无序列表
<ul>
<li> </li>
<li> </li>
</ul>
` 常用属性
type 列表的图标
square 实心方块
circle 空心圆
disc 实心圆(默认)
有序列表
格式:
<ol>
<li></li>
<li></li>
</ol>
常用属性
type 列表的图标
1 数字序号
a 小写字母
A 大写字母
i 小写罗马字母
I 大写罗马字母
-->
<body>
<h2>无序列表</h2>
<ul>
<li>张三</li>
<li>王五</li>
</ul>
<ul type="square">
<li>张三</li>
<li>王五</li>
</ul>
<ul type="disc">
<li>张三</li>
<li>王五</li>
</ul>
<h2>有序列表</h2>
<ol type="1">
<li>张三</li>
<li>李四</li>
</ol>
<ol type="a">
<li>张三</li>
<li>李四</li>
</ol>
<ol type="I">
<li>张三</li>
<li>李四</li>
</ol>
</body>
</html>