In the flight status, the user should be able to check the status of a flight by entering arrival location, departure lo

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

In the flight status, the user should be able to check the status of a flight by entering arrival location, departure lo

Post by answerhappygod »

In the flight status, the user should be able to check thestatus of a flight by entering arrival location, departurelocation, travel date, or flight number.
<!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;">RuchiTravels</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"> <h2>Flight Status</h2> <table id="flight_status"> <tr> <th>Boarding</th> <th>FlightStatus</th> <th>FlightNumber</th> <th>Arrival</th> </tr> <tr> <td>India</td> <td>Arrived</td> <td>XYZ987783</td> <td>Singapore</td> </tr>
<tr> <td>Singapore</td> <td>Departed</td> <td>XYZ987784</td> <td>India</td> </tr>
<tr> <td>Thailand</td> <td>Departed</td> <td>XYZ987785</td> <td>India</td> </tr>
<tr> <td>India</td> <td>Arrived</td> <td>XYZ987786</td> <td>Thailand</td> </tr> <tr> <td>Singapore</td> <td>Departed</td> <td>XYZ987787</td> <td>Thailand</td> </tr> <tr> <td>Thailand</td> <td>Arrived</td> <td>XYZ987788</td> <td>Singapore</td> </tr> </table> </div>
<div class="column side"> <h2>Travels</h2> </div>
</div>
<div class="footer"> <p>abc</p> <p>345</p></div></body></html>
need help with the code above which need to edited as perrequirment.
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply