-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
103 lines (98 loc) · 3.32 KB
/
about.html
File metadata and controls
103 lines (98 loc) · 3.32 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
93
94
95
96
97
98
99
100
101
102
103
<!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>
<title>About Safe Routes</title>
<link rel="stylesheet" href="https://use.typekit.net/rvq8yfn.css">
<link rel="stylesheet" href="css/index.css">
</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="aboutSplash">
<img src="images/team.svg" alt="team" class="aboutSVG">
<div class="splashText">
<h2>About Us</h2>
<p>Safe Routes is a team committed to creating safer transportation experiences for users of all modes of
transportation.</p>
</div>
</section>
<hr>
<section class="aboutContent">
<div class="boxes">
<div class="aboutBox">
<img src="images/team/phillip.jpg" alt="phillip">
<h3>Phillip Smith</h3>
<h4>Project Lead</h4>
</div>
<div class="aboutBox">
<img src="images/team/lionel.jpg" alt="lionel">
<h3>Lionel Kamga</h3>
<h4>Machine Learning</h4>
</div>
<div class="aboutBox">
<img src="images/team/jaavion.jpg" alt="jaavion">
<h3>Jaavion Davis</h3>
<h4>Machine Learning</h4>
</div>
<div class="aboutBox">
<img src="images/team/wenjing.jpg" alt="wenjing">
<h3>Wenjing Liu</h3>
<h4>Data Science</h4>
</div>
<div class="aboutBox">
<img src="images/team/cameron.jpg" alt="cameron">
<h3>Cameron Alvarado</h3>
<h4>Frontend</h4>
</div>
<div class="aboutBox">
<img src="images/team/mark.jpg" alt="mark">
<h3>Mark French</h3>
<h4>Frontend</h4>
</div>
<div class="aboutBox">
<img src="images/team/brandon.jpg" alt="brandon">
<h3>Brandon Dong</h3>
<h4>Frontend Framework</h4>
</div>
<div class="aboutBox">
<img src="images/team/zachary.jpg" alt="zachary">
<h3>Zachary Baca</h3>
<h4>Web UI</h4>
</div>
<div class="aboutBox">
<img src="images/team/john.jpg" alt="john">
<h3>John Wells</h3>
<h4>Web UI</h4>
</div>
<div class="aboutBox">
<img src="images/team/francis.jpg" alt="francis">
<h3>Francis Bulus</h3>
<h4>Web UI</h4>
</div>
<div class="aboutBox">
<img src="images/team/aaron.jpg" alt="aaron">
<h3>Aaron Clark</h3>
<h4>Web UI</h4>
</div>
</section>
</div> <!-- End .container -->
<footer>
<p>Copyright 2019 Safe Routes</p>
</footer>
</body>
</html>