-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelhi.html
More file actions
75 lines (70 loc) · 2.69 KB
/
delhi.html
File metadata and controls
75 lines (70 loc) · 2.69 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PlacesToVisit</title>
<link rel="icon" type="image/x-icon" href="logo.png">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="stateStyle.css">
</head>
<body>
<nav class="navbar">
<div class="logo">
<a href="index.html"><img src="logo.png" alt="Logo"/></a>
<a href="index.html"><span class="website-name">PlacesToVisit</span></a>
</div>
<ul class="nav-links">
<li>
<div class="dropdown">
<button class="dropbtn">States ▼</button>
<div class="dropdown-content">
<a href="delhi.html">Delhi</a>
<a href="himachal.html">Himachal Pradesh</a>
<a href="index.html#states">All States..</a>
</div>
</div>
</li>
<li><a href="index.html#about">About</a></li>
</ul>
</nav>
<main>
<div class="content">
<div class="slide-container">
<div class="slide">
<h1>Delhi : The Vibrant Capital of India</h1>
</div>
<div class="slide">
<img src="images/redfort.jpg" alt="Red Fort">
<h2>Red Fort</h2>
<h3></i>Overview</h3>
<p>
Located in Old Delhi, Red Fort is a major tourist attraction and a UNESCO World Heritage site. Mughal emperor Shah Jahan ordered the construction of this architectural marvel which served as the residence of Mughal emperors for nearly 200 years!
</p>
<h3>What To Expect?</h3>
<p>
Chatta Chowk, a vibrant bazaar leads you to the fort compound. Inside, explore the Drum House, Hall of Public Audiences and more.
</p>
</div>
<div class="slide">
<img src="images/delhi.jpg" alt="Qutub Minar">
<h2>Qutub Minar</h2>
<h3>Overview</h3>
<p>
Towering 73 metres high above the greens in Mehrauli, construction for this five-storey minaret was started by Qutb ud Din Aibak, founder of Delhi Sultanate. It is renowned for the artistic brick-work on its pillars and arches.
</p>
<h3>What To Expect?</h3>
<p>
Marvel at the blend of Hindu, Jain and Islamic architecture, read Sanskrit inscriptions on the highly corrosion-resistant iron pillar, and check out the tombs of Iltutmish and Alauddin Khalji.
</p>
</div>
</div>
</div>
</main>
<footer>
<div class="footer-content">
<p>© 2025 PlacesToVisit. No rights reserved.</p>
</div>
</footer>
</body>
</html>