-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
180 lines (130 loc) · 4.46 KB
/
events.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S79Y2FRX1H"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-S79Y2FRX1H');
</script>
<!-------------------------------------------------------- Meta Tags End -->
<title>Events</title>
<!-- tab logo -->
<link rel="icon" type="image/x-icon" href="/images/tablogo.png">
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- bootstrap CSS file link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<!-- custom css file link -->
<link rel="stylesheet" href="css/events.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="top"></div>
<!-- header section starts -->
<header class="header">
<a href="index.html" class="logo"> <img src="ahmedabad/240_F_235610291_OMADoH4PpHGOgpYYxgZcuv6PdDlA5VdJ-removebg-preview.png"height="90px" width="300px"> </a>
<nav class="navbar">
<div id="nav-close" class="fas fa-times"></div>
<a href="index.html">home</a>
<a href="adventure.html">Best place</a>
<a href="blogs.html">Heritage site</a>
<a href="events.html">facility</a>
</nav>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<!-- <a href="#" class="fas fa-shopping-cart"></a> -->
<div id="search-btn" class="fas fa-search"></div>
</div>
</header>
<!-- header section ends -->
<!-- search form start -->
<div class="search-form">
<div id="close-search" class="fas fa-times"></div>
<form action="">
<input type="search" name="" placeholder="search here..." id="search-box">
<label for="search-box" class="fas fa-search"></label>
</form>
</div>
<!-- search form ends-->
<!-- ---------------------------banner -->
<div class="banner-area"></div>
<!-- ------------------event html start--------------------------------------------- -->
<section class="category adventure" id="adventure">
<div class="box-container">
<div class="box">
<img src="ahmedabad/metro.webp" alt="">
<h3>Metro</h3>
<p>Metro is an urban Mass Rapid Transit System (MRTS) being built by Gujarat Metro Rail Corporation ....</p>
</div>
<div class="box">
<img src="ahmedabad/brts.jpg" alt="">
<h3>BRTS</h3>
<p>Janmarg, also known as Ahmedabad BRTS, is a bus rapid transit system in Ahmedabad, Guja..............</p>
</div>
<div class="box">
<img src="ahmedabad/amts.jpeg" alt="">
<h3>AMTS</h3>
<p> AMTS is India's largest Municipal Transport Service for local conveyance. It is a voluntary serv......</p>
</div>
</div>
</section>
<!-- FOOTER START -->
<div class="footer">
<div class="contain">
<div class="col">
<h1>Home page</h1>
<ul>
<li>home</li>
<li>best place</li>
<li>heritage site</li>
<li>facility</li>
</ul>
</div>
<div class="col">
<h1>Best Place</h1>
<ul>
<li>Riverfront</li>
<li>Kankaria</li>
<li>Atal brige</li>
<li>motera-stadium</li>
</ul>
</div>
<div class="col">
<h1>heritage site</h1>
<ul>
<li>Siddi-Sayed-Mosque</li>
<li>jama masjid</li>
<li>Sabarmati-Ashram</li>
<li>Bhadra-Fort</li>
</ul>
</div>
<div class="col">
<h1>facility</h1>
<ul>
<li>Top Hospitals</li>
<li>Top collages</li>
<li> Transport</li>
</ul>
</div>
<div class="col social">
<h1>Social</h1>
<ul>
<li><img src="/logo/7123025_logo_google_g_icon.png" width="32" style="width: 32px;"></li>
<li><img src="/logo/map.png" width="32" style="width: 32px;"></li>
<li><img src="/logo/instagram.png" width="32" style="width: 32px;"></li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- END OF FOOTER -->
<a href="#top" class="to-top">
<i class="fas fa-chevron-up"></i>
</a>
<!-- custom js file link -->
<script src="js/allscript.js"></script>
</body>
</html>