-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlv1.html
86 lines (74 loc) · 2.1 KB
/
lv1.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
<!DOCTYPE html>
<html lang="en">
<style>
.aqua {
color: aqua;
}
.box {
width: 120px;
height: 120px;
background-color: aqua;
}
</style>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>前端预习作业 lv1</title>
</head>
<h1>我是八奈见的狗</h1>
<p>八奈见杏菜我真的好喜欢你呀!</p>
<h3>这是老八,她很可爱</h3>
<img src="../前端预习作业/八奈见泳装.jpg" width="300">
<div class="box">
<p>我   是   一   个</p> 老八色的盒子
</div>
<p>
</p>
<p>
<a href="https://mzh.moegirl.org.cn/%E5%85%AB%E5%A5%88%E8%A7%81%E6%9D%8F%E8%8F%9C">
什么,不认识老八,点我查询
</a>
</p>
<ul class="aqua">
<li>我</li>
<li>是</li>
<li>老</li>
<li>八</li>
<li>的</li>
<li>狗</li>
</ul>
<p>
<input type="text" width="300" value="输入啥都没用的">
<input type="button" value="点我干啥">
<div>快来注册加入败犬大家族!</div>
<p></p>
<p></p>
<table border="1" align="left" width="400" height="40">
<tr>
<th align="center">用户名</th>
<td><input type="text" maxlength="40"></td>
</tr>
<tr>
<th align="center">密码</th>
<td><input type="password" maxlength="40"></td>
</tr>
<tr>
<td align="center" colspan="2"><input type="submit"> <input type="reset"></td>
</tr>
</table>
<br>
<br>
<br>
<br>
<br>
<h4>老八了解程度调查</h4>
<div>你喜欢老八吗?<input type="radio" name="love chengdu">喜欢<input type="radio" name="love chengdu">不喜欢
</div>
<br>
<div>老八喜欢的食物<input type="checkbox">可乐<input type="checkbox"> 薯片
<input type="checkbox"> 温水 <input type="checkbox">奥利给 <input type="checkbox">钝角
<input type="checkbox">不行了,编不下去了
</div>
<br>
<div>对老八说的话 <textarea>我是八奈见的狗</textarea></div>
</html>