Ordered list
1 2 3 4 | <ol type= "A" , start= "C" > <!--ordered list-->
<li>第一项</li>
<li>第二项</li>
</ol>
|
Copy after login
Unordered list
1 2 3 4 | <ul type= "disc" > <!--unordered list--> <!--还有两种type:circle,square-->
<li>第一项</li>
<li>第二项</li>
</ul>
|
Copy after login
Definition list
The definition list consists of definition terms (definition term) and definition description (definition description)
1 2 | <dt>标记后面添加要解释的名词
<dd>标记后面添加名词的具体解释
|
Copy after login
1 2 3 4 | <dl type= "disk" > <!--definition list--> <!--还有两种type:circle,square-->
<dt>CSS</dt>
<dd>Cascating Style Sheets</dd>
</dl>
|
Copy after login
Chestnut:
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 | <!doctype html>
<html>
<head>
<meta http-equiv= "content-type" content= "text/html; charset=utf-8"
<meta name= "description" content= "设置页面说明" >
<title>网页1</title>
</head>
<body>
<h1>标题</h1>
<hr>
<ol type= "A" , start= "3" > <!--ordered list-->
<li>第一项</li>
<li>第二项</li>
</ol>
<ul type= "disc" > <!--unordered list--> <!--还有两种type:circle,square-->
<li>第一项</li>
<li>第二项</li>
</ul>
<dl type= "disk" > <!--definition list-->
<dt>CSS</dt>
<dd>Cascating Style Sheets</dd>
</dl>
</body>
</html>
|
Copy after login
Output effect:

The above article briefly talks about html ordered lists, unordered lists and definition lists. I have compiled all the content shared with you. I hope it can give you a reference. I also hope that everyone will support the PHP Chinese website.
For more articles on html ordered lists, unordered lists and definition lists, please pay attention to the PHP Chinese website!