Page 1 of 1

. In the special offer webpage, after the user clicks the “special offer” button, you should display three multiple-choi

Posted: Tue Jul 05, 2022 10:27 am
by answerhappygod
. In the special offer webpage, after the user clicks the“special offer” button, you should display three multiple-choicequestions that produce a special offer for the user based on theuser’s answers. (Ex. Have you flown on at least 10 flights in thepast year? Yes. Are you a senior flyer? Yes. “Because of X and Y,you qualify for $100 off your flight!”) You should display onequestion at a time. If the user clicks on the “next” button, thenext question should be displayed. The user should be able to skipa question by clicking a “skip” button. Make sure to displaywhy the user is qualified, how much time they spent on thequestions, and what the offer is.
<!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"> <h2>Special Offers</h2> <img src="offer.jpeg" alt="Offer" width="400"height="400"> </div>
<div class="column side"> <h2Travels</h2> </div>
</div>
<div class="footer"> <p>yht</p> <p>987</p></div></body></html>
need help with above code as per requirment