-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06 留言板.html
59 lines (55 loc) · 1.83 KB
/
06 留言板.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>留言板</title>
<link href="css/menu-copyright.css" rel="stylesheet" type="text/css">
<link href="css/留言板.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="top">
<div class="top-text">
<a href="01 向北去看雪.html"><h2>首页</h2></a>
<a href="02 目的地.html"><h2>目的地</h2></a>
<a href="03 行程安排.html"><h2>行程安排</h2></a>
<a href="04 相册.html"><h2>相册</h2></a>
<a href="05 关于我们.html"><h2>关于我们</h2></a>
<a href="06 留言板.html"><h2>留言板</h2></a>
</div>
</div>
<div>
<form action="" method="post" class="smart-green">
<h1>Contact Form
<span>Please fill all the texts in the fields.</span>
</h1>
<label>
<span>Your Name :</span>
<input id="name" type="text" name="name" placeholder="Your Full Name" />
</label>
<label>
<span>Your Email :</span>
<input id="email" type="email" name="email" placeholder="Valid Email Address" />
</label>
<label>
<span>Message :</span>
<textarea id="message" name="message" placeholder="Your Message to Us"></textarea>
</label>
<label>
<span>Subject :</span><select name="selection">
<option value="Job Inquiry">Talk about our tour</option>
<option value="General Question">Share your own tour</option>
</select>
</label>
<label>
<span> </span>
<input type="button" class="button" value="Send" />
</label>
</form>
</div>
<div class="copyright">
<div class="copyright-text">
<p>Copyright©2016 Hynn All Rights Reserved.</p>
</div>
</div>
</body>
</html>