-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathreservations.html
More file actions
76 lines (63 loc) · 2.53 KB
/
reservations.html
File metadata and controls
76 lines (63 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<title> Pacific Trails :: Reservations</title>
<meta charset="utf-8">
<link rel="stylesheet" href="pacific.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"> </script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<header>
<h1>
Pacific Trails Resort</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="yurts.html">Yurts</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="reservations.html">Reservations</a></li>
</ul>
</nav>
<div id="content">
<h2>Reservations at Pacific Trails</h2>
<h3>Contact Us Today</h3>
<p>Required fields are marked with an asteriks *</p>
<form name="reservation" method="post" id="reservation" action="http://webdevbasics.net/scripts/pacific.php">
<label>* First Name: </label>
<input type="text" name="myFName" id="myFName">
<label>* Last Name: </label>
<input type="text" name="myLName" id="myLName">
<label>* Email: </label>
<input type="text" name="myEmail" id="myEmail">
<label>Phone: </label>
<input type="text" name="myPhone" id="myPhone">
<label>Arrival Date: </label>
<input type="date" name="myArrival" id="myArrival">
<label> Nights: </label>
<input type="number" name="myNights" id="myNights">
<label>* Comments: </label>
<textarea name="myComments" id="myComments"></textarea>
<input type="submit" value="Submit">
</form>
<div id="contact">
<span class="resort"> Pacific Trails Resort</span>
<br> 12010 Pacific Trails Road
<br> Zephyr, CA 95555
<br>
<br>
<span class="desktop">888-555-5555</span>
<span class="mobile"><a href="tel:888-555-5555">888-555-5555</a></span>
</div>
</div>
<footer>
Copyright © 2014 Pacific Trails Resort
<br>
<a href="serghei@sandin.com">serghei@sandin.com</a>
</footer>
</div>
</body>
</html>