-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
92 lines (82 loc) · 2.54 KB
/
about.html
File metadata and controls
92 lines (82 loc) · 2.54 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
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About SmartChallan</title>
<style>
/* Basic CSS Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Global Styles */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
}
nav ul {
list-style-type: none;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
nav ul li a.active {
font-weight: bold;
}
.about-section {
margin-top: 20px;
}
footer {
text-align: center;
margin-top: 20px;
padding: 10px 0;
background-color: #333;
color: #fff;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About</a></li>
<!-- Add other navigation links as needed -->
</ul>
</nav>
</header>
<img src="logo.png" alt="">
<div class="container">
<section class="about-section">
<h1>About SmartChallan</h1>
<p>SmartChallan is a cutting-edge platform revolutionizing the way traffic violations are managed and processed. Our mission is to streamline the process of issuing and managing challans, ensuring a smoother experience for both authorities and citizens.</p>
<p>With SmartChallan, users can expect:</p>
<ul>
<li>Efficient challan issuance and tracking</li>
<li>Transparent and accessible payment systems</li>
<li>Integration with modern technologies for seamless management</li>
<!-- Add more features or benefits as needed -->
</ul>
<p>Our platform is designed to bring convenience and transparency to the challenging world of traffic management.</p>
</section>
</div>
<footer>
<p>© 2023 SmartChallan. All rights reserved.</p>
</footer>
</body>
</html>