-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (64 loc) · 2.78 KB
/
index.html
File metadata and controls
74 lines (64 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="images/icon.png">
<script src="https://kit.fontawesome.com/91392b981d.js"></script>
<link rel="stylesheet" href="https://use.typekit.net/rvq8yfn.css">
<link rel="stylesheet" href="css/index.css">
<title>Safe Routes</title>
</head>
<body>
<div class="container home">
<header>
<h1>SAFE ROUTES</h1>
<nav class="navBar">
<a href="index.html" class="hvr-foward">Home</a>
<a href="about.html" class="hvr-foward">About</a>
<a href="contact.html" class="hvr-foward">Contact</a>
<a href="product.html" class="hvr-foward">Product</a>
<a href="https://safe-routes-bw.netlify.com/" class="hvr-forward login">Login</a>
</nav>
</header>
<img src="images/aerial-view.jpg" alt="aerial view of streets">
<section class="splash">
<img src="images/map.svg" alt="map" class="homeSVG">
<div class="splashText">
<h2 class="call">Machine Learning <br>Meets <br>Route Planning</h2>
<p>Safe Routes analyzes historic traffic data so users can view and avoid accident-prone areas of routes.</p>
<form action="https://safe-routes-bw.netlify.com/" method="get" target="_blank">
<button type="submit" class="callBTN">Login</button>
</div>
</section>
<hr>
<section class="mainContent">
<section class="information">
<div class="textBox">
<i class="fas fa-walking fa-6x"></i>
<h3>Pedestrian Friendly</h3>
<p>Safe Routes was design with drivers and pedestrian in mind. Users have access to what areas are dangerous to drivers and pedestrians.</p>
<img src="images/screen4.png" alt="iphone navigation">
</div>
<div class="textBox">
<i class="fas fa-route fa-6x"></i>
<h3>Intelligent Prediction</h3>
<p>In addition to displaying historic accident data near a given address, Safe Routes will predict the liklihood of future accidents in given locations.</p>
<img src="images/screen2.png" alt="iphone navigation">
</div>
<div class="textBox">
<i class="fas fa-car-crash fa-6x"></i>
<h3>Accident Avoidance</h3>
<p>Safe Routes draws from a massive database of traffic incidents. Our algorithms look for impact of weather, time of day, season, and other variables. Users can filter data by month and year.</p>
<img src="images/screen5.png" alt="iphone navigation">
</div>
</section>
</section>
<hr>
</div> <!-- end container -->
<footer>
<p>Copyright 2019 Safe Routes</p>
</footer>
</body>
</html>