diff options
Diffstat (limited to 'HTML/Tests/Test3/reservations.html')
-rw-r--r-- | HTML/Tests/Test3/reservations.html | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/HTML/Tests/Test3/reservations.html b/HTML/Tests/Test3/reservations.html new file mode 100644 index 0000000..181220b --- /dev/null +++ b/HTML/Tests/Test3/reservations.html @@ -0,0 +1,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> |