-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask1.html
More file actions
127 lines (123 loc) · 4.17 KB
/
task1.html
File metadata and controls
127 lines (123 loc) · 4.17 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>task1</title>
<link rel="stylesheet" type="text/css" href="">
<script>
console.log('hi');
</script>
</head>
<style type="text/css">
* {
padding: 0px;
margin: 0px;
font-size: 20px;
}
a {
text-decoration: none;
}
</style>
<body>
<header>
what is the header?
</header>
<!-- /header -->
<h1>这是一级标题</h1>
<a href="http://www.baidu.com/"><h2>click me</h2></a>
<abbr title=""><b>BBC</b></abbr>
<br>
<hr>
<br>
<button type="button">click me</button>
<span>文本</span>
<canvas>
</canvas>
<code>
var myvarible = '';
console.log('hello world');
</code>
<em>this is important</em>
<div class="containner">
<audio autobuffer autoloop loop controls>
<source src="./assets/music/a_place_nearby.mp3">
<!-- <object type="audio/x-wav" data="/media/audio.wav" width="290" height="45">
<param name="src" value="/media/audio.wav">
<param name="autoplay" value="false">
<param name="autoStart" value="0">
<p><a href="/media/audio.wav">Download this audio file.</a></p>
</object> -->
</audio>
<img src="assets/image/1.jpg" height="1020" width="1019" alt="">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<pre>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</pre>
<table>
<caption>table title and/or explanatory text</caption>
<thead>
<tr>
<th>header1</th>
<th>header2</th>
<th>header3</th>
<th>header4</th>
</tr>
</thead>
<tbody>
<tr>
<td>data11</td>
<td>data12</td>
<td>data13</td>
<td>data14</td>
</tr>
<tr>
<td>data21</td>
<td>data22</td>
<td>data23</td>
<td>data24</td>
</tr>
</tbody>
</table>
<form action="task1_submit" method="get" accept-charset="utf-8">
<input type="checkbox" name="" value="">
<label>姓名
<input type="text/" name="" value="">
</label>
<select name="">
<option value="">男</option>
<option value="">女</option>
</select>
<input type="submit" name="" value="submit" disabled="disabled">
<input type="radio" name="" value="submit">
<input type="hidden" name="" value="submit" required>
</form>
<div>
<ul>
<li>li1</li>
<li>li2</li>
<li>li3</li>
<li>li4</li>
</ul>
<ol>
<li>li1</li>
<li>li2</li>
<li>li3</li>
<li>li4</li>
</ol>
</div>
</div>
<section>
H5 section
</section>
<footer>
this is footer
</footer>
</body>
</html>