Advertisement
lovelymondayss

Sachin bookingform

Dec 15th, 2022
1,016
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.63 KB | None | 0 0
  1. <html lang="en">
  2.   <head>
  3.     <meta charset="UTF-8" />
  4.     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6.     <title>Coding Camp</title>
  7.     <link rel="stylesheet" href="style.css" type="text/css" />
  8.   </head>
  9.   <body>
  10.     <header>
  11.       <h1 class="header-title">Time Tours</h1>
  12.       <nav>
  13.         <a href="index.html">Home</a>
  14.         <a href="bookingform.html">Booking</a>
  15.         <a href="about.html">About us</a>
  16.       </nav>
  17.     </header>
  18.     <main class="formcontainer">
  19.       <h1 class="title">Tour Reservations Form</h1>
  20.       <img src="images/booking.png" alt="" />
  21.       <form>
  22.         <label> Full Name</label>
  23.         <input type="text" />
  24.         <label>Email</label>
  25.         <input type="email" />
  26.         <label>Phone Number</label>
  27.         <input type="number" />
  28.         <label>Pick a Date</label>
  29.         <input type="date" />
  30.         <label>How many Person?</label>
  31.         <input id="num-of-people" type="number" />
  32.  
  33.         <label>Tour Package</label>
  34.         <select name="package" id="package">
  35.           <option value="3500">Sakura Tours| $3500</option>
  36.           <option value="2500">Anime World Tours| $2500</option>
  37.           <option value="9000">Discover Japan| $9000</option>
  38.         </select>
  39.       </form>
  40.       <h3>Total Payment : $<span id="total"></span></h3>
  41.       <button onclick="process()">Process Booking</button>
  42.     </main>
  43.     <footer>
  44.       <h4>Time Tours</h4>
  45.       <p>Copyright &copy 2022 Designed by Sachin Udayakumar</p>
  46.    </footer>
  47.  </body>
  48.  <script src="script.js"></script>
  49. </html>
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement