-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
163 lines (159 loc) · 6.34 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | SmartPark</title>
<link href="about.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="about">
<section class="left">
<h2>Why use SmartPark?</h2>
<section class="features">
<h3 class="features-heading">
Customizable
</h3>
<section class="features-flex">
<div class="features-left">
<img class="features-img" width="90" height="90"
src="https://img.icons8.com/clouds/100/sorting-options.png" alt="sorting-options" />
</div>
<div class="features-right">
<p class="features-para">
Features can be quickly and easily added or tailored to specific needs.
</p>
</div>
</section>
</section>
<section class="features push-right">
<h3 class="features-heading">
Easy to Use
</h3>
<section class="features-flex">
<div class="features-left">
<img class="features-img" width="64" height="64"
src="https://img.icons8.com/external-bearicons-outline-color-bearicons/64/external-Easy-to-Use-miscellany-texts-and-badges-bearicons-outline-color-bearicons.png"
alt="external-Easy-to-Use-miscellany-texts-and-badges-bearicons-outline-color-bearicons" />
</div>
<div class="features-right">
<p class="features-para">
Manage the entire parking area using your handheld device. No training required.
</p>
</div>
</section>
</section>
<section class="features">
<h3 class="features-heading">
Live Trends & Reports
</h3>
<section class="features-flex">
<div class="features-left">
<img class="features-img" width="90" height="90"
src="https://img.icons8.com/clouds/100/business-report.png" alt="business-report" />
</div>
<div class="features-right">
<p class="features-para">
Built-in statistical tools help you use the data captured for further decision making.
</p>
</div>
</section>
</section>
</section>
<section class="right">
<video id="myVideo" width="600" height="600" autoplay onended="restartVideo()">
<source src="mobile_final.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<script>
function restartVideo() {
var video = document.getElementById("myVideo");
video.currentTime = 0;
video.play();
}
</script>
</section>
</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:sourabhaprasad04@gmail.com" 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>