-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.常见文本标签.html
49 lines (47 loc) · 1.11 KB
/
1.常见文本标签.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>练习</title>
</head>
<body>
<h1>ddh</h1>
<h2>抽奖</h2>
<p>段落标签</p>
<p>更改文本样式:<b>加粗</b>,<i>斜体</i>,<u>下划线</u>,<s>删除线</s></p>
<ul>
<li>无序列表1</li>
<li>无序列表2</li>
</ul>
<ol>
<li>有序列表1</li>
<li>有序列表2</li>
</ol>
<p>tr --table row</p>
<p>td --table data</p>
<p>th --table header</p>
<table>
<tr>
<th>标题1</th>
<th>标题2</th>
<th>标题2</th>
</tr>
<tr>
<td>元素11</td>
<td>元素21</td>
<td>元素31</td>
</tr>
<tr>
<td>元素12</td>
<td>元素22</td>
<td>元素32</td>
</tr>
<tr>
<td>元素13</td>
<td>元素23</td>
<td>元素33</td>
</tr>
</table>
</body>
</html>