-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdelhi.html
86 lines (81 loc) · 4.13 KB
/
delhi.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
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Delhi Travel Guide</title>
<link rel="stylesheet" href="delhi.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://etimg.etb2bimg.com/photo/87278130.cms" alt="Delhi Landscape" />
<div class="photo-overlay">
<h1>Delhi</h1>
<p>The Heart of India</p>
</div>
</div>
</section>
<section class="key-highlights">
<h2>Explore the Wonders of Delhi</h2>
<p class="section-intro">Dive into the rich history, vibrant culture, and modern attractions of Delhi. Here's everything you need to make your visit unforgettable.</p>
<div class="highlights-container">
<div class="highlight">
<h3>🏯 Destination Places</h3>
<p>Visit iconic landmarks like the <b>India Gate</b>, the historic <b>Red Fort</b>, the architectural wonder of <b>Qutub Minar</b>, and the serene <b>Lotus Temple</b>. Explore the bustling streets of <b>Chandni Chowk</b> for a taste of Old Delhi's charm.</p>
<a href="https://www.delhitourism.gov.in/delhitourism/tourist_place/index.jsp" target="_blank" class="details-btn">Learn More</a>
</div>
<div class="highlight">
<h3>🏨 Stay Options</h3>
<p>Choose from luxury hotels like <b>The Leela Palace</b>, mid-range stays in Connaught Place, or budget-friendly accommodations in Paharganj. Delhi offers a range of options for every traveler.</p>
<a href="https://www.booking.com/city/in/new-delhi.html" target="_blank" class="details-btn">Explore Stays</a>
</div>
<div class="highlight">
<h3>🎭 Activities to Do</h3>
<p>Take a rickshaw ride through <b>Old Delhi</b>, marvel at the sprawling gardens of <b>Lodhi Garden</b>, or shop at vibrant markets like <b>Janpath</b> and <b>Sarojini Nagar</b>. Experience the nightlife at Hauz Khas Village or DLF Cyber Hub.</p>
<a href="https://www.tripadvisor.in/Attractions-g304551-Activities-New_Delhi_National_Capital_Territory_of_Delhi.html" target="_blank" class="details-btn">More Activities</a>
</div>
<div class="highlight">
<h3>🍛 Food & Cuisine</h3>
<p>Savor Delhi's famous street food like <b>Chaat</b>, <b>Parathas</b> from Chandni Chowk, and the delicious <b>Butter Chicken</b>. Indulge in upscale dining at Connaught Place or explore food joints in Delhi's vibrant food hubs.</p>
<a href="https://www.tourmyindia.com/states/delhi/cuisine.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>