-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
256 lines (195 loc) · 4.51 KB
/
Copy pathindex.html
File metadata and controls
256 lines (195 loc) · 4.51 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
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Discover Gondia</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}
body{
background:#f5f7fb;
color:#333;
line-height:1.6;
}
header{
background:linear-gradient(135deg,#2c7be5,#00c9a7);
color:white;
padding:80px 20px;
text-align:center;
}
header h1{
font-size:3rem;
margin-bottom:10px;
}
header p{
font-size:1.2rem;
opacity:0.9;
}
nav{
background:white;
padding:15px;
display:flex;
justify-content:center;
gap:40px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}
nav a{
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}
nav a:hover{
color:#2c7be5;
}
.container{
max-width:1100px;
margin:auto;
padding:40px 20px;
}
.section-title{
text-align:center;
margin-bottom:40px;
}
.section-title h2{
font-size:2rem;
color:#2c7be5;
}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}
.card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}
.card:hover{
transform:translateY(-5px);
}
.card h3{
margin-bottom:10px;
color:#2c7be5;
}
.highlight{
background:linear-gradient(135deg,#00c9a7,#2c7be5);
color:white;
padding:60px 20px;
text-align:center;
margin-top:40px;
}
.highlight h2{
margin-bottom:15px;
}
footer{
background:#1f2937;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}
footer p{
opacity:0.8;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Gondia</h1>
<p>The Rice City of Maharashtra 🌾</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#places">Places</a>
<a href="#culture">Culture</a>
<a href="#travel">Travel</a>
</nav>
<section class="container" id="about">
<div class="section-title">
<h2>About Gondia</h2>
</div>
<p>
Gondia is a peaceful city in eastern Maharashtra known for its rice production, lush greenery, and proximity to wildlife sanctuaries. Often called the “Rice City”, it serves as an important agricultural and railway hub connecting Maharashtra, Chhattisgarh, and Madhya Pradesh.
</p>
</section>
<section class="container" id="places">
<div class="section-title">
<h2>Top Attractions</h2>
</div>
<div class="grid">
<div class="card">
<h3>Navegaon National Park</h3>
<p>A beautiful forest reserve famous for wildlife, bird watching, and a scenic lake.</p>
</div>
<div class="card">
<h3>Navegaon Dam</h3>
<p>A popular tourist spot with breathtaking sunset views and peaceful nature surroundings.</p>
</div>
<div class="card">
<h3>Hazra Falls</h3>
<p>A hidden natural waterfall perfect for nature lovers and monsoon trips.</p>
</div>
<div class="card">
<h3>Kachargadh Caves</h3>
<p>A sacred and historical cave site associated with tribal culture and mythology.</p>
</div>
</div>
</section>
<section class="highlight">
<h2>Why Visit Gondia?</h2>
<p>
Beautiful forests, wildlife reserves, peaceful environment, and rich tribal culture make Gondia a hidden gem in central India.
</p>
</section>
<section class="container" id="culture">
<div class="section-title">
<h2>Culture & Lifestyle</h2>
</div>
<div class="grid">
<div class="card">
<h3>Tribal Heritage</h3>
<p>The region has a strong Gond tribal culture with unique traditions and festivals.</p>
</div>
<div class="card">
<h3>Rice Capital</h3>
<p>Gondia is widely known for rice mills and agricultural production.</p>
</div>
<div class="card">
<h3>Local Festivals</h3>
<p>Festivals like Diwali, Holi, and traditional tribal celebrations bring vibrant community life.</p>
</div>
</div>
</section>
<section class="container" id="travel">
<div class="section-title">
<h2>Travel Information</h2>
</div>
<div class="grid">
<div class="card">
<h3>By Train</h3>
<p>Gondia Junction is a major railway station connecting major cities.</p>
</div>
<div class="card">
<h3>By Air</h3>
<p>The nearest airport is Nagpur Airport, about 150 km away.</p>
</div>
<div class="card">
<h3>Best Time to Visit</h3>
<p>October to February offers pleasant weather for travel.</p>
</div>
</div>
</section>
<footer>
<p>Discover Gondia | Built with ❤️ by Harsh Pardhi. Cloud Engineer</p>
</footer>
</body>
</html>