-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
156 lines (150 loc) · 4.25 KB
/
test.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<html>
<head>
<title>Test website</title>
<meta charset="utf-8"/>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的<em>第一个</em><strong>段落</strong>。</p>
<p>
<mark>Oct.31 </mark>
<cite>Guangyao Zhai</cite>
</p>
<dfn> test definition </dfn>
<br><br>
<a href="file:///D:/MYwebsite/DingGong-master/%E9%92%89%E5%AE%AB/index.html"target="blank" title="Go to Dinggong">More information</a>
<br><br>
<img src="huang.jpg" alt="error"width="480px">
<h3>test list unorder</h3>
<ul>
<li>网页课程</li>
<ol type="a">
<li>html</li>
<li>js</li>
<li>css</li>
</ol>
<li>DingGong网站制作</li>
<ul>
<li>测试网站</li>
<li>代码研究</li>
</ul>
</ul>
<hr>
<table border="1">
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>kanade</td>
<td>18</td>
</tr>
<tr>
<td>Mark</td>
<td>23</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
<hr>
<table border="1">
<tr>
<th>Name</th>
<th colspan="2">Telephone number</th>
</tr>
<tr>
<td>Bill</td>
<td>1234</td>
<td>5678</td>
</tr>
</table>
<br><hr>
<table border="1">
<caption>Customer Telephone number</caption>
<tr>
<th>name</th>
<td>Bill</td>
</tr>
<tr>
<th rowspan="2">Telephone number</th>
<td>1234</td>
</tr>
<tr>
<td>5678</td>
</tr>
</table>
<hr>
<form class="" action="index.html" enctype="multipart/form-data">
<label for="usrnme">Username</label><br>
<input type="text" id="usrnme"name="Username" value=""placeholder="Username"required><br>
password:<br>
<input type="Password" name="Password" value=""placeholder="Password"><br>
<div class="">
<label for="email">email</label><br>
<input type="email" name="email" id="email"value="[email protected]">
</div>
<div class="">
<label for="age">age</label><br>
<input type="number" name="age" id="Age"value="15"min="0"max="150"step="1">
</div>
<div class="">
<labelfor="Birthday">Birthday</label><br>
<input type="date" name="Birthday" id="Birthday"value="2000-01-01">
</div>
Favourite food
<div class="">
<label for="apple">apple</label>
<input type="checkbox" name="apple" id="apple"value="">
</div>
<div class="">
<label for="banana">banana</label>
<input type="checkbox" name="banana" id="banana"value="">
</div>
Gender
<div class="">
<label for="male">male</label>
<input type="radio" name="Gender" id="male"value="male">
</div>
<div class="">
<label for="female">female</label>
<input type="radio" name="Gender"id="female" value="female">
</div>
<div class="">
<label for="haircolor">haircolor</label>
<select id="haircolor"class="" name="haircolor"multiple>
<option value="yingfa">银发</option>
<option value="baimao">白毛</option>
</select>
</div>
<div class="">
<label for="bio">Bio</label>
<textarea name="bio" id="Bio"rows="8" cols="80">textarea</textarea>
</div>
<div class="">
<input type="hidden" name="hidden" value="Hello">
<label for="pws">Password</label>
</div>
<div class="">
<label for="file">file</label>
<input type="file" id="file"name="" value="">
</div>
<div class="">
<label for="phone">phone</label>
<input type="tel"id="phone" name="" value="">
</div>
<input type="submit" value="login">
<input type="reset" name="" value="reset">
</form>
<hr>
<h3>HTML ENTITY</h3>
<p>显示特殊需要<p></p>
<p>显示特殊需要<p></p>
<p>显示特殊需要&lt;p></p>
<p>单个词组 不分开单个词组 不分开单个词组 不分开单个词组 不分开单个词组 不分开单个词组 不分开</p>
<br><br><br><br>
</body>
</html>