forked from PoojaMittal2842/Delhi-Tourism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
115 lines (99 loc) · 5 KB
/
gallery.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WELCOME TO INDIA</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
</head>
<body>
<header>
<section class="wrapper text-dark bg-grey" id="destinations">
<div class="container d-flex-c">
<div class="text-center"></div>
<h6 id="heading">POPULAR DESTINATIONS OF DELHI</h6>
<br>
<p id="text">I asked my soul:What is <b>DELHI</b></p>
<p id="text">She replied: the world is the body and <b>DELHI</b> it's life.</p>
<p id="text"> – Mirza Asadullah Beg Khan Ghalib</p>
</div>
<ul class="d-flex-r nospace">
<li class="hover1">
<img src="images/the-red-fort-delhi.jpg" width="330" height="300">
<div class="overlay">
<h2>RED FORT</h2>
</div>
</li>
<li class="hover1">
<img src="images/qutab_minar.jpg" width="400" height="300">
<div class="overlay">
<h2>QUTAB MINAR</h2>
</div>
</li>
<li class="hover1">
<img src="images/humayun.jpg" width="330" height="300">
<div class="overlay">
<h2>HUMAYUN'S TOMB</h2>
</div>
</li>
<li class="hover1">
<img src="images/india_gate.jpg" width="330" height="300">
<div class="overlay">
<h2>INDIA GATE</h2>
</div>
</li>
<li class="hover1">
<img src="images/jama-masjid-delhi.jpg" width="330" height="300">
<div class="overlay">
<h2>JAMA MASJID</h2>
</div>
</li>
<li class="hover1">
<img src="images/lotus-temple.jpg" width="330" height="300">
<div class="overlay">
<h2>LOTUS TEMPLE</h2>
</div>
</li>
<li class="hover1">
<img src="images/aksha.jpg" width="330" height="300">
<div class="overlay">
<h2>AKSHARDHAM</h2>
</div>
</li>
<li class="hover1">
<img src="images/rb.jpg" width="330" height="300">
<div class="overlay">
<h2>RASHTRAPTI BHAVAN</h2>
</div>
</li>
<li class="hover1">
<img src="images/lodhi.jpg" width="330" height="300">
<div class="overlay">
<h2>LODHI GARDEN</h2>
</div>
</li>
<li class="hover1">
<img src="images/jm.jpg" width="330" height="300">
<div class="overlay">
<h2>JANTAR MANTAR</h2>
</div>
</li>
<li class="hover1">
<img src="images/rajghat.jpg" width="330" height="300">
<div class="overlay">
<h2>RAJ GHAT</h2>
</div>
</li>
<li class="hover1">
<img src="images/smriti.jpg" width="330" height="300">
<div class="overlay">
<h2>GANDHI SMRITI</h2>
</div>
</li>
</ul>
</div>
</section>
</header>
</body>
</html>