-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgoa.html
85 lines (81 loc) · 3.97 KB
/
goa.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Goa Travel Guide</title>
<link rel="stylesheet" href="goa.css">
</head>
<body>
<div class="logo">
<img src="LOGO.png" alt="Roam City Logo">
</div>
<header>
<nav>
<a href="index.html">Home</a>
<a href="traveltips.html">Travel Tips</a>
<a href="aboutus.html">About Us</a>
<a href="contactus.html">Contact Us</a>
</nav>
</header>
<section class="city-intro">
<div class="city-photo">
<img src="https://zenseresort.com/wp-content/uploads/2015/12/Goa-Beach-HD-Wallpapers-4.jpg" alt="Goa Beach" />
<div class="photo-overlay">
<h1>Goa</h1>
<p>The Land of Sun, Sand, and Sea</p>
</div>
</div>
</section>
<section class="key-highlights">
<h2>Unwind in the Paradise of Goa</h2>
<p class="section-intro">From golden beaches to thrilling nightlife, Goa offers the perfect blend of relaxation and adventure. Explore the must-visit highlights below.</p>
<div class="highlights-container">
<div class="highlight">
<h3>🏖️ Beaches to Visit</h3>
<p>Relax at the serene <b>Palolem Beach</b>, enjoy the bustling vibe of <b>Baga Beach</b>, or explore the quieter beauty of <b>Agonda Beach</b>. Water sports like parasailing and jet skiing are a must-try for adventure lovers.</p>
<a href="https://goa-tourism.com/beach/" target="_blank" class="details-btn">Learn More</a>
</div>
<div class="highlight">
<h3>🏨 Stay Options</h3>
<p>From luxurious resorts like <b>Taj Exotica</b> to budget-friendly guesthouses near the beach, Goa caters to all travelers. Stay in boutique cottages or beach huts for a truly unique experience.</p>
<a href="https://www.booking.com/city/in/goa.html" target="_blank" class="details-btn">Explore Stays</a>
</div>
<div class="highlight">
<h3>🎭 Activities to Do</h3>
<p>Experience vibrant nightlife at <b>Titos Lane</b>, explore Portuguese heritage at <b>Old Goa</b>, or take a river cruise on the Mandovi. Don't forget to shop at the famous <b>Anjuna Flea Market</b>.</p>
<a href="https://www.tripadvisor.in/Attractions-g297604-Activities-Goa.html" target="_blank" class="details-btn">More Activities</a>
</div>
<div class="highlight">
<h3>🍛 Food & Cuisine</h3>
<p>Indulge in Goan delicacies like <b>Vindaloo</b>, savor fresh <b>seafood</b>, and sip on refreshing <b>coconut feni</b>. Visit beachside shacks for an authentic culinary experience.</p>
<a href="https://www.holidify.com/pages/goa-food-3129.html" target="_blank" class="details-btn">Find Food Spots</a>
</div>
</div>
</section>
<footer>
<div class="footer-sec">
<h3>Popular Cities</h3>
<ul>
<li><a href="shi.html">Shilong</a></li>
<li><a href="varanasi.html">Varanasi</a></li>
<li><a href="goa.html">Goa</a></li>
<li><a href="jaipur.html">Jaipur</a></li>
</ul>
</div>
<div class="footer-sec">
<h3>Our Company</h3>
<ul>
<li><a href="terms.html">Terms and Conditions</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</div>
<div class="footer-quote">
<div class="logo-footer" style="font-style: normal;">Roam To</div>
<div class="logo-footer" style="font-style: normal;">The City</div>
</div>
</footer>
</body>
</html>