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

Adding more service cards to the services section #1959

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
90 changes: 79 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,7 @@
left: 0;
pointer-events: none;
z-index: 99999999;
}

}
/* Wrapper for the logo and loader */
.loader-wrapper {
position: relative;
Expand Down Expand Up @@ -1299,16 +1298,85 @@ <h3>Travel Blog</h3>
<a href="guide.html">
<div class="icon">
<i class="fa-solid fa-person"></i>
</div>
</a>
<a href="guide.html">
<h3>Local Guide Connection</h3>
</a>
<p>Partner with local guides and tour providers, allowing to book personalized tours or experiences led by
locals for an authentic travel experience.</p>
</div>
</div></a>
<a href="guide.html"><h3>Local Guide Connection</h3></a>
<p>Partner with local guides and tour providers, allowing to book personalized tours or experiences led by locals for an authentic travel experience.</p>
</div>
<!-- Service Card: Car Rental -->
<div class="service-card">
<a href="carrentals.html">
<div class="icon">
<i class="fas fa-car"></i>
</div></a>
<a href="carrentals.html"><h3>Car Rental</h3></a>
<p>Rent a car for your travels, with a wide variety of vehicles available for any destination.</p>
</div>

<!-- Service Card: Travel Insurance -->
<div class="service-card">
<a href="insurance.html">
<div class="icon">
<i class="fas fa-shield-alt"></i>
</div>

</a>
<a href="insurance.html">
<h3>Travel Insurance</h3>
</a>
<p>Protect your trip with comprehensive insurance coverage for emergencies, health, and cancellations.</p>
</div>

<!-- Service Card: Group Tours -->
<div class="service-card">
<a href="grouptours.html">
<div class="icon">
<i class="fas fa-users"></i>
</div>
</a>
<a href="grouptours.html">
<h3>Group Tours</h3>
</a>
<p>Join group tours for a cost-effective and social way to explore new destinations with like-minded travelers.</p>
</div>

<!-- Service Card: Adventure Travel -->
<div class="service-card">
<a href="adventure.html">
<div class="icon">
<i class="fas fa-mountain"></i>
</div>
</a>
<a href="adventure.html">
<h3>Adventure Travel</h3>
</a>
<p>Discover thrilling activities such as trekking, kayaking, and bungee jumping around the world.</p>
</div>

<!-- Service Card: Cruise Booking -->
<div class="service-card">
<a href="cruise.html">
<div class="icon">
<i class="fas fa-ship"></i>
</div>
</a>
<a href="cruise.html">
<h3>Cruise Booking</h3>
</a>
<p>Embark on an unforgettable journey with premium cruise options across seas and oceans.</p>
</div>

<!-- Service Card: Virtual Tours -->
<div class="service-card">
<a href="virtualtours.html">
<div class="icon">
<i class="fas fa-globe-americas"></i>
</div>
</a>
<a href="virtualtours.html">
<h3>Virtual Tours</h3>
</a>
<p>Experience the world from the comfort of your home with immersive virtual tours of top attractions.</p>
</div>
</div>
</section>

<script>
Expand Down