Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add button or link in benefits #461

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,12 @@
flex-direction: row;
align-items: center;
}

.card button{
margin-bottom: 20px;
border-radius: 10px;
padding: 15px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>
Expand Down Expand Up @@ -335,36 +341,39 @@ <h3>
<div class="cards">
<div class="card">
<div class="card-icon">
<img src="/icons/route-solid.svg" />
<img src="./icons/route-solid.svg" />
</div>
<h4>Travel</h4>
<p>
Discover budget-friendly getaways for families and friends! From
serene mountains to sunny beaches, find your next adventure
without breaking the bank. Start exploring now!
</p>
<button id="btn"><a href="book.html ">Explore Itineraries</a></button>
</div>
<div class="card">
<div class="card-icon">
<img src="/icons/bed-solid.svg" />
<img src="./icons/bed-solid.svg" />
</div>
<h4>Hotel</h4>
<p>
We've handpicked top-rated options that offer exceptional value.
Book your perfect stay today and enjoy premium accommodations
without the premium price tag!
</p>
<button id="btn"><a href="book.html ">See Hotels</a></button>
</div>
<div class="card">
<div class="card-icon">
<img src="/icons/plane-departure-solid.svg" />
<img src="./icons/plane-departure-solid.svg" />
</div>
<h4>Fly</h4>
<p>
Fly to your dream destination without breaking the bank! We offers
the best flight deals, combining comfort and affordability for
perfect journey. Book now and take off for less!
</p>
<button id="btn"><a href="book.html ">See Flights</a></button>
</div>
</div>
</section>
Expand Down
Loading