Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Coding Camp</title>
- <link rel="stylesheet" href="style.css" type="text/css" />
- </head>
- <body>
- <header>
- <h1 class="header-title">Time Tours</h1>
- <nav>
- <a href="index.html">Home</a>
- <a href="bookingform.html">Booking</a>
- <a href="about.html">About us</a>
- </nav>
- </header>
- <main class="formcontainer">
- <h1 class="title">Tour Reservations Form</h1>
- <img src="images/booking.png" alt="" />
- <form>
- <label> Full Name</label>
- <input type="text" />
- <label>Email</label>
- <input type="email" />
- <label>Phone Number</label>
- <input type="number" />
- <label>Pick a Date</label>
- <input type="date" />
- <label>How many Person?</label>
- <input id="num-of-people" type="number" />
- <label>Tour Package</label>
- <select name="package" id="package">
- <option value="3500">Sakura Tours| $3500</option>
- <option value="2500">Anime World Tours| $2500</option>
- <option value="9000">Discover Japan| $9000</option>
- </select>
- </form>
- <h3>Total Payment : $<span id="total"></span></h3>
- <button onclick="process()">Process Booking</button>
- </main>
- <footer>
- <h4>Time Tours</h4>
- <p>Copyright © 2022 Designed by Sachin Udayakumar</p>
- </footer>
- </body>
- <script src="script.js"></script>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement