-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist_label.html
More file actions
55 lines (50 loc) · 1.51 KB
/
list_label.html
File metadata and controls
55 lines (50 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!--
* @由于个人水平有限, 难免有些错误, 还请指点:
* @Author: cpu_code
* @Date: 2020-10-08 19:48:19
* @LastEditTime: 2020-10-08 20:14:48
* @FilePath: \web\html\list_label\list_label.html
* @Gitee: [https://gitee.com/cpu_code](https://gitee.com/cpu_code)
* @Github: [https://github.com/CPU-Code](https://github.com/CPU-Code)
* @CSDN: [https://blog.csdn.net/qq_44226094](https://blog.csdn.net/qq_44226094)
* @Gitbook: [https://923992029.gitbook.io/cpucode/](https://923992029.gitbook.io/cpucode/)
-->
<!DOCTYPE html>
<html lang="ch">
<head>
<meta charset="UTF-8"/>
<title>cpucode列表标签</title>
</head>
<body>
<!-- 有序列表 ol -->
cpucode打代码
<ol type="A" start="3">
<li> 打开电脑 </li>
<li> 打开idea </li>
<li> 敲代码 </li>
<li> 验证 </li>
</ol>
<!-- 无序列表 ul -->
cpucode玩手机
<ul type="disc">
<li> 看qq </li>
<li> 看微信 </li>
<li> 看存款 </li>
<li> 看姑娘 </li>
</ul>
cpucode玩手机
<ul type="square">
<li> 看qq </li>
<li> 看微信 </li>
<li> 看存款 </li>
<li> 看姑娘 </li>
</ul>
cpucode玩手机
<ul type="circle">
<li> 看qq </li>
<li> 看微信 </li>
<li> 看存款 </li>
<li> 看姑娘 </li>
</ul>
</body>
</html>