. In the book webpage, the user should be able to choose thetype of trip. If the user selects a one-way trip, the user shouldbe able to enter the origin, destination, departure date, andarrival date. If the user selects a round trip, the user should beable to enter the origin, destination, departure date, and arrivaldate for both ways. On the book webpage, there should be apassenger icon. If the user clicks on the passenger icon, a formshould be displayed. In this form, the user should be able tochoose type of passenger ( adults, children, or infants). The useralso should be able to enter the number of passengers for eachcategory.
<!DOCTYPE html><html lang="en" dir="ltr"> <head> <meta charset="utf-8" /> <title> Travels</title> <link rel="stylesheet" href="mystyle.css"/> </head>
<div class="header"> <h1 style="color:black;">Travels</h1></div>
<div class="row"><div class="topnav"> <a href="flights.html">Flight</a> <a href="book.html">Book</a> <a href="flightstatus.html">FlightStatus</a> <a href="specialoffers.html">SpecialOffers</a> <a href="contact.html">Contact</a></div></div>
<div class="row">
<div class="column side"> <h2>About Us</h2> <p>Travels has been revolutionizing the travelindustry. Metasearch for travel? No one was doing it. Until wedid.Today, we process billions of queries across our platforms eachyear for travel information, helping millions of travelers aroundthe globe make confident decisions. With every query,Travelssearches hundreds of travel sites to show travelers the informationthey need to find the right flights, hotels, rental cars andvacation packages.</p> </div>
<div class="column middle"> <form name="form"> <h2>RegistionFlight</h2> <label>Title</label> <selectname="Title"> <option>Mr</option> <option>Ms</option> <option>Mrs</option> </select><br> <label class="large-label"for="your-name"> First name <input id="your-name"name="your-name" type="text"><br> </label> <label class="large-label"for="your-name"> Last name <input id="your-name"name="your-name" type="text"><br> </label> <label class="large-label"for="your-name"> Phone <input id="your-name"name="your-name" type="text"><br> </label> <label class="large-label"for="your-name"> Emailhe31 <input id="your-name"name="your-name" type="text"><br> </label> <label class="large-label"for="your-name"> Passport Deatils <input id="your-name"name="your-name" type="text"><br> </label> <label>Nationality</label> <selectname="Nationality"> <option>India</option> <option>USA</option> </select><br> <label>Arrival</label> <selectname="arrival"> <option>India</option> <option>Thailand</option> <option>Singapore</option> </select><br> <label>Departure</label> <selectname="departure"> <option>Thailand</option> <option>Singapore</option> <option>India</option> </select><br> <label>Adult</label> <selectname="adult"> <option>0</option> <option>1</option> <option>2</option> <option>3+</option> </select><br> <buttontype="Submit">Submit</button> </form> </div>
<div class="column side"> <h2> Travels</h2> </div>
</div>
<div class="footer"> <p>xyz</p> <p>123</p></div></body></html>
need help with above requirments for the code attech with.
. In the book webpage, the user should be able to choose the type of trip. If the user selects a one-way trip, the user
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am