-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path001-文字样式.html
91 lines (90 loc) · 2.31 KB
/
001-文字样式.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>001-文字样式</title>
<link rel="stylesheet" type="text/css" href="css/uix.reset.css" />
<link rel="stylesheet" type="text/css" href="css/uix.basic.css" />
<style type="text/css">
.content {
padding: 20px;
margin: 10px;
border: 1px dashed #ccc;
}
</style>
</head>
<body>
<div class="content">
<table class="table">
<thead>
<tr style="text-align:center;">
<th>描述</th>
<th>效果</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:center;">H1</td>
<td>
<h1>h1. The quick brown fox jumps over the lazy dog</h1>
</td>
</tr>
<tr>
<td style="text-align:center;">H2</td>
<td>
<h2>h2. Jackdaws love my big sphinx of quartz</h2>
</td>
</tr>
<tr>
<td style="text-align:center;">H3</td>
<td>
<h3>h3. 国破山河在</h3>
</td>
</tr>
<tr>
<td style="text-align:center;">H4</td>
<td>
<h4>h4. 城春草本深</h4>
</td>
</tr>
<tr>
<td style="text-align:center;">H5</td>
<td>
<h5>h5. 感时花溅泪(假设html基准字号为12px,则此文本字号约为14px)</h5>
</td>
</tr>
<tr>
<td style="text-align:center;">H6</td>
<td>
<h6>h6. 恨别鸟惊心</h6>
</td>
</tr>
<tr>
<td style="text-align:center;">文本高亮</td>
<td>明月几时有,<mark>把酒问青天,</mark> 不知天上宫阙,</td>
</tr>
<tr>
<td style="text-align:center;">删除线文本</td>
<td><del>今夕是何年,我欲乘风归去,</del></td>
</tr>
<tr>
<td style="text-align:center;">下划线文本</td>
<td><u>转朱阁,低绮户,照无眠,</u></td>
</tr>
<tr>
<td style="text-align:center;">小号文本</td>
<td><small>不应有恨,何事偏向别时圆。</small></td>
</tr>
<tr>
<td style="text-align:center;">着重文本</td>
<td><strong>人有悲欢离合,月有阴晴圆缺。</strong></td>
</tr>
<tr>
<td style="text-align:center;">斜体文本</td>
<td><em>此事古难全,但愿人长久,千里共婵娟。</em></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>