-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplore.html
More file actions
229 lines (201 loc) · 6.4 KB
/
explore.html
File metadata and controls
229 lines (201 loc) · 6.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Explore Road Maintenance Feedback</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.min.js"></script>
<style>
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Background and Body */
body {
font-family: 'Poppins', sans-serif;
background-color: #f4f7fc;
position: relative;
padding-bottom: 60px;
}
body::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('background.jpg');
background-size: cover;
background-position: center;
opacity: 0.3;
z-index: -1;
}
/* Navbar Styling */
.navbar {
padding: 1rem 2rem;
background-color: #343a40;
}
.navbar-brand {
font-family: 'Roboto', sans-serif;
font-size: 1.7rem;
font-weight: 700;
color: #f8f9fa;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.nav-link {
color: #f8f9fa;
font-weight: 700;
margin-left: 20px;
text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
.nav-link:hover {
color: #007bff;
}
/* Hero Section */
.hero-text {
text-align: center;
font-size: 2rem;
font-weight: 700;
color: #007bff;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
margin-top: 30px;
}
/* Cards Section */
.card {
margin: 2rem 0;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
border: none;
}
.card-header {
font-size: 1.8rem;
font-weight: 700;
color: #343a40;
background-color: #007bff;
color: #fff;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
padding: 1rem;
text-align: center;
border-radius: 10px 10px 0 0;
}
.card-body {
padding: 2rem;
font-size: 1.2rem;
}
.card-title {
font-size: 1.6rem;
font-weight: 700;
color: #007bff;
}
.card-text {
color: #444;
font-weight: 500;
text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4);
}
.btn-primary {
background-color: #007bff;
border-color: #007bff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
background-color: #0056b3;
border-color: #0056b3;
}
/* Footer */
footer {
background-color: #343a40;
color: white;
text-align: center;
padding: 20px;
font-size: 0.9rem;
font-weight: 700;
position: absolute;
bottom: 0;
width: 100%;
}
footer a {
color: #007bff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.hero-text {
font-size: 1.5rem;
}
.card-header {
font-size: 1.5rem;
}
.card-body {
font-size: 1rem;
}
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="index.html">Road Maintenance Feedback</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="explore.html">Explore</a>
</li>
<li class="nav-item">
<a class="nav-link" href="submit.html">Submit Feedback</a>
</li>
<li class="nav-item">
<a class="nav-link" href="recent.html">Recent Feedback</a>
</li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<div class="container">
<div class="hero-text">Explore Why Road Maintenance Is Needed</div>
</div>
<!-- Vision Section -->
<div class="container">
<div class="card">
<div class="card-header">Vision</div>
<div class="card-body">
<h5 class="card-title">A Clear Vision for Safer Roads</h5>
<p class="card-text">
Our vision is to create a community-driven system where citizens actively contribute to maintaining sustainable road networks. By fostering collaboration between the public and local authorities, we aim to build a future where road safety, accessibility, and durability are enhanced through real-time feedback.
</p>
<a href="https://nhai.gov.in/" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
<!-- Mission Section -->
<div class="container">
<div class="card">
<div class="card-header">Mission</div>
<div class="card-body">
<h5 class="card-title">Our Mission for Road Safety</h5>
<p class="card-text">
Our mission is to empower citizens with a simple, effective platform to report road maintenance needs. We are committed to improving road quality by ensuring that every issue reported is addressed in a timely manner, thereby enhancing road safety, reducing accidents, and increasing accessibility for all. Our platform fosters transparency and trust between citizens and road authorities to ensure smoother, safer roads.
</p>
<a href="https://morth.nic.in/" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<p>© 2024 Road Maintenance Feedback. All rights reserved. | <a href="privacy.html">Privacy Policy</a></p>
</footer>
</body>
</html>