-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
154 lines (151 loc) · 5.45 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>SmartPark</title>
<link href="index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<nav>
<header>
<a href="index.html">
<h1>SmartPark</h1>
</a>
<div>
<menu>
<li> <a href="index.html">Home</a>
</li>
<li> <a href="about.html">About</a>
</li>
<li> <a href="contact.html">Contact</a>
</li>
</menu>
</div>
</header>
</nav>
<section class="description">
<h1>A Smart Parking Management System</h1>
<p>
Discover a smarter way to park with real-time availability information at your fingertips. SmartPark utilizes
cutting-edge technology to streamline your parking experience, making finding a spot easier than ever. A Smart Parking Management system can help users find parking spaces, save time, and reduce pollution.
</p>
</section>
<section class="home-image">
<h1>Welcome to SmartPark:<br>Your Guide to Hassle-Free Parking.</h1>
</section>
<section class="features-box">
<section class="features">
<h3 class="features-heading">
Customise Spaces
</h3>
<section class="features-flex">
<div class="features-left">
<img width="100" height="100" src="https://img.icons8.com/clouds/100/parking-meter.png" alt="parking-meter" />
</div>
<div class="features-right">
<p class="features-para">
Orient your parking spots on each side of an aisle. The size of your aisles will depend on if you create
one-way aisles or two-way aisles. </p>
</div>
</section>
</section>
<section class="features">
<h3 class="features-heading">
View Live Reports </h3>
<section class="features-flex">
<div class="features-left">
<img width="100" height="100" src="https://img.icons8.com/bubbles/100/bar-chart.png" alt="bar-chart">
</div>
<div class="features-right">
<p class="features-para">
No more manual checking of empty space. View it on your phone. Also view live reports.</p>
</div>
</section>
</section>
<section class="features">
<h3 class="features-heading">
Slots Per Vehicle </h3>
<section class="features-flex">
<div class="features-left">
<img width="100" height="100" src="https://img.icons8.com/clouds/100/traffic-jam.png" alt="traffic-jam" />
</div>
<div class="features-right">
<p class="features-para">
Allocate slots as per two-wheeler and four-wheeler vehicles to utilise all available space.</p>
</div>
</section>
</section>
</section>
<section class="about">
<h1>Who We Are</h1>
<p>SmartPark is at the forefront of parking space management, dedicated to creating solutions
that simplify urban mobility. <br> Learn more about our mission, values, and commitment to
enhancing your parking experience.</p>
</section>
<nav>
<footer>
<section class="grid-item">
<div>
<h1>Download</h1>
<ul>
<li>Mobile App</li>
<li>Brochure</li>
</ul>
<br>
</div>
<div>
<h1>Services</h1>
<ul>
<li>Learn More</li>
<li>Manage Account</li>
</ul>
<br>
</div>
</section>
<section class="grid-item">
<div>
<h1>Company</h1>
<ul>
<li>Terms & Conditions</li>
<li>Privacy Policy</li>
</ul>
<br>
</div>
<div>
<h1>Products</h1>
<ul>
<li>Web</li>
<li>App</li>
</ul>
</div>
</section>
<section class="grid-item social-icon">
<h1>Get In Touch</h1>
<li><a href="mailto:[email protected]" target="_blank" rel="noopener noreferrer">
<img width="25" height="25" src="https://img.icons8.com/ios-filled/50/FFFFFF/apple-mail.png" alt="apple-mail"/>
</a></li>
<li><a href="http://instagram.com" target="_blank" rel="noopener noreferrer">
<img width="25" height="25" src="https://img.icons8.com/ios-filled/50/FFFFFF/instagram-new--v1.png" alt="instagram-new--v1"/>
</a></li>
<li><a href="http://twitter.com" target="_blank" rel="noopener noreferrer">
<img width="25" height="25" src="https://img.icons8.com/ios-filled/50/FFFFFF/twitter.png" alt="twitter"/></a></li>
<li><a href="http://facebook.com" target="_blank" rel="noopener noreferrer"><img width="25" height="25" src="https://img.icons8.com/ios-filled/50/FFFFFF/facebook-new.png" alt="facebook-new"/></a></li>
<br>
<div class="container">
<h1>Subscribe to Our Newsletter</h1>
<form id="subscribe-form" action="#" method="POST">
<div class="form-group">
<label for="email"><label>
<input type="email" id="email" name="email" placeholder="Enter email address" required>
</div>
<div class="form-group">
<button type="submit">Subscribe</button>
</div>
</form>
</div>
</section>
</footer>
</nav>
</body>
</html>