-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreservations.html
76 lines (67 loc) · 1.78 KB
/
reservations.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
Pacific Trails Resort
</title>
<link href="css/styles.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</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>
<main>
<h2>
Reservations at Pacific Trails
</h2>
<h3>
Contact Us Today!
</h3>
<form method="post" action="http://webdevbasics.net/scripts/pacific.php">
<p>
Required fields are marked with an asterik *.
</p>
<label for="Name">*First Name:</label>
<input type="text" name="myName" id="Name"
required="required"><br>
<label for="myName">*Last Name:</label>
<input type="text" name="myName" id="myName"
required="required"><br>
<label for="myE-mail">*E-mail:</label>
<input type="email" name="myE-mail" id="myE-mail"
required="required"><br>
<label for="myPhone">*Phone:</label>
<input type="number" name="myPhone" id="myPhone"
required="required"><br>
<label for="myDate">Arrival Date:</label>
<input type="date" name="myDate" id="myDate"><br>
<label for="Nights">Nights:</label>
<input type="number" name="Nights" id="Nights"
max="14" min="1"><br>
<label for="myComment">*Comments:</label>
<textarea name="myComment" id="myComment" cols="30" rows="7"
required="required">
</textarea><br>
<input type="submit" value="Submit">
</form>
</main>
<div id="contact">
<footer>
<em>Copyright © 2020 Pacific Trails Resort</em><break></break>
<a href="[email protected]">[email protected]</a>
</footer>
</div>
</div>
</body>
</html>