-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage.html
42 lines (38 loc) · 1.32 KB
/
message.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
<!DOCTYPE html>
<html>
<head>
<title>青蛙🐸乐园</title>
<link rel="shortcut icon" href="Pics/logo.png">
<link href="index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<ul class="top">
<li style="padding-top: 0;"><img src="Pics/logo.png"></li>
<li style="padding-top: 60px;"><p>青蛙🐸乐园</p></li>
<li style="float: right;"><a href="album.html">相册</a></li>
<li style="float: right;"><a href="index.html">返回首页</a></li>
</ul><br>
<div class="form">
<form>
<p>姓名:</p>
<input type="text" name="name"><br><br>
<p>性别:</p>
<input type="radio" name="sex">男
<input type="radio" name="sex">女<br><br>
<p>选择你喜爱的青蛙:</p>
<input type="checkbox" name="frog" value="frog1">南美角蛙
<input type="checkbox" name="frog" value="frog2">钟角蛙
<input type="checkbox" name="frog" value="frog3">非洲牛蛙
<input type="checkbox" name="frog" value="frog4">姥爷树蛙
<input type="checkbox" name="frog" value="frog5">蜡白猴树蛙<br><br>
<p>留言:</p>
<textarea name="message"></textarea><br><br>
<input type="submit" value="提交">
<input type="reset" value="重置">
</form>
</div>
<div class="footer">
<p>Copyright ©</p>
</div>
</body>
</html>