-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase.html
106 lines (96 loc) · 2.06 KB
/
base.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<html>
<head>
<title>基础html</title>
</head>
<style>
p {
color: #333289;
font-size: 20px;
font-weight: 700;
}
#title {
color: orange;
}
.title2 {
color: red;
}
.cities{
background-color:black;
color:white;
margin:20px;
padding:20px;
}
</style>
<body>
<h1 id="title">h1标签</h1>
<!-- 这个是h2 标签
<h2>h2</h2>-->
<h3 class="title2">h3</h3>
<h4 class="title2">h4</h4>
<h5 style="font-size:100%;">h5</h5>
<h6 class="cities">h6</h6>
<p>p标签</p>
<a href="http://www.w3school.com.cn" title="百度" name="tips">标签a</a>
<img src="http://pic.guoxuedashi.com/shufa/k/117109.gif" width="200" height="200" alt="Big Boat" />
<br />
<hr />
<pre>
SEO:
</pre>
<a href="#tips">上面</a>
<table border="1">
<thead>
<tr>
<th>row 2, cell 1</th>
<th colspan="2">row 2, cell 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 1, cell 1</td>
<td rowspan="2">row 1, cell 2</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
<td>row 1, cell 2</td>
</tr>
</tfoot>
</table>
<ul>
<li>无序列表</li>
<li>Milk</li>
</ul>
<ol>
<li>有序列表</li>
<li>Milk</li>
</ol>
<dl>
<dt>定义列表</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
<div>
一行
</div>
<span>
行内
</span>
<span>
行内
</span>
</body>
</html>