1
0
Fork 0
WEBD-225-40/reservations.html

79 lines
2.6 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
2022-02-06 20:52:59 +00:00
<meta name="description"
content=" Reservations page for Atlantic Fishing Resort. Set a reservation at a luxurious resort in Namibia.">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Atlantic Fishing Resort :: Reservations</title>
<link rel="stylesheet" href="css/atlantic.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
2022-02-06 20:52:59 +00:00
<![endif]-->
<!-- Completed files -->
</head>
<body>
2022-02-06 20:52:59 +00:00
<div id="wrapper">
<header>
2022-02-06 20:52:59 +00:00
<h1>Atlantic Fishing Resort</h1>
2022-02-06 20:52:59 +00:00
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="units.html">Units</a>
</li>
<li>
<a href="activities.html">Activities</a>
</li>
<li>
<a href="#" class="active">Reservations</a>
</li>
</ul>
</nav>
</header>
<main>
2022-02-06 20:52:59 +00:00
<h2>Reservations at Atlantic Fishing Resort</h2>
<h3>Contact Us</h3>
<p>Required information is marked with an asterisk (*).</p>
<form method="post" action="http://webdevbasics.net/scripts/pacific.php">
<label for="myFName">* First Name:</label>
<input type="text" name="myFName" id="myFName" required="required">
<label for="myLName">* Last Name:</label>
<input type="text" name="myLName" id="myLName" required="required">
<label for="myEmail">* E-mail:</label>
<input type="email" name="myEmail" id="myEmail" required="required">
<label for="myPhone">Phone:</label>
<input type="tel" name="myPhone" id="myPhone">
<label for="myDate">Arrival Date:</label>
<input type="date" name="myDate" id="myDate">
<label for="myNights">Nights:</label>
<input type="number" name="myNights" id="myNights" min="1" max="14">
2022-02-06 20:52:59 +00:00
<label for="myComments">* Comments:</label>
<textarea name="myComments" id="myComments" rows="2" cols="20" required="required"></textarea>
2022-02-06 20:52:59 +00:00
<input type="submit" id="mySubmit" value="Submit">
</form>
</main>
<footer>
2022-02-06 20:52:59 +00:00
Copyright © 1999 Atlantic Fishing Resort<br>
<a href="mailto:yourfirstname@yourlastname.com">yourfirstname@yourlastname.com</a>
</footer>
2022-02-06 20:52:59 +00:00
</div>
</body>
</html>