-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
47 lines (47 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Project</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<nav>
<!-- <div class="nav-items"> -->
<ul class="menu">
<li><a href="index.html">Traffic Tracking</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<!-- </div> -->
<!-- todo: search bar -->
<div class="search-bar" id="basic-bar">
<form action="">
<input
class="typeahead"
id="pac-input"
type="text"
placeholder="Enter a City Name"
/>
</form>
</div>
</nav>
</div>
<!--todo: img background -->
<div class="img-gif-background"></div>
<!-- todo: about project container -->
<div class="about-container">
<div class="about-container-header">TrafficEcoGen</div>
<br /><br />
<main class="about-container-text">
TrafficEcoGen was inspired by the need to address both traffic
congestion and the rising demand for sustainable energy. The system
analyzes historical and real-time traffic data to strategically place
wind turbines in congested areas, converting the kinetic energy of
passing vehicles into electricity.
</main>
</div>
</body>
</html>