blob: 181220b1f6d3a29d360ce12900eb872213f3d6c5 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pacific Trails Resort :: Reservations</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href=pacific.css>
<meta name="description" content="Pacific Trails Resort is a site that contains information about the activities and registration for the resort.">
</head>
<body>
<div id=wrapper>
<header>
<h1><a href=index.html>Pacific Trails Resort</a></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</a></li>
</ul>
</nav>
<main>
<h2 class=resort>Reservations at Pacific Trails</h2>
<h3>Contact Us Today!</h3>
<p>Required fields are marked with an asterisk *.</p>
<form method="post" action=https://webdevbasics.net/scripts/pacific.php>
<label for="myFName">* First Name: </label>
<input type="text" id="myFName" required></input>
<label for="myLName">* Last Name: </label>
<input type="text" id="myLName" required></input>
<label for="myEmail">* Email Address: </label>
<input type="email" id="myEmail" required></input>
<label for="myPhone">Phone:</label>
<input type="tel" name="myPhone" id="myPhone" max="12">
<label for="myArrival">Calander: </label>
<input type="date" id="myArrival"></input>
<label for="myNights">Nights: </label>
<input type="range" min=1 max=14 id="myNights"></input>
<label for="myComments">* Comments: </label>
<textarea id="myComments" name="myComments" rows="2" cols="30">
</textarea>
<input type="submit">
</form>
<div id="contact">
<span class="resort">Pacific Trails Resort</span><br/>
12010 Pacific Trails Road<br/>
Zephyr, CA 95555<br/>
<br/>
888-555-5555<br/>
<br/>
</div>
</main>
<footer>
Copyright © 2022 Pacific Trails Resort
<br />
<!--"Place your name in an email link". I'm assuming that this is what was meant by this.-->
<small><a href=mailto:msglm@techchud.xyz>msglm</a></small>
</footer>
<div>
</body>
</html>
|