Skip to content

Commit

Permalink
Merge pull request #461 from Nikhileshmauje/Add_button
Browse files Browse the repository at this point in the history
Add button or link in benefits
  • Loading branch information
PriyaGhosal authored Oct 11, 2024
2 parents 093a639 + 070d4e8 commit 83abc30
Showing 1 changed file with 12 additions and 3 deletions.
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

0 comments on commit 83abc30

Please sign in to comment.