console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p>数字列表:</p>
<ol type="1">
<li>北京</li>
<li>上海</li>
<li>广州</li>
<li>深圳</li>
</ol>
<p>字母列表:</p>
<ol type="A">
<li>北京</li>
<li>上海</li>
<li>广州</li>
<li>深圳</li>
</ol>
<P>小写字母列表:</P>
<ol type="a">
<li>北京</li>
<li>上海</li>
<li>广州</li>
<li>深圳</li>
</ol>
<p>罗马字母列表:</p>
<ol type="I">
<li>北京</li>
<li>上海</li>
<li>广州</li>
<li>深圳</li>
</ol>
<p>小写罗马字母:</p>
<ol type="i">
<li>北京</li>
<li>上海</li>
<li>广州</li>
<li>深圳</li>
</ol>
</body>
</html>