-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
executable file
·44 lines (42 loc) · 1.89 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>About Us</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<style>
a{
text-decoration: none;
color: black;
}
</style>
</head>
<body>
<div class="row">
<div class="col-lg-12 text-center">
<h2>About Us</h2>
<hr style="width:130px">
<img src="http://i.imgur.com/tuOWEQo.jpg" alt="the crew" style="width:75%;max-width:500px;"/>
<div style="padding-left:20px;padding-right:20px">
<ul style="list-style: none;list-style:none;
padding-left:0;">
<li><a href="http://kcamellini.com"><strong>Kevin Camellini</strong></a> Front end developer.</li>
<br>
<li><a href="http://nathanchao.com"><strong>Nathan Chao</strong></a> Back end, Flight search optimization.</li>
<br>
<li><a href="http://justinleger.ca"><strong>Justin Leger</strong></a> Back end, suggestion algorithm.</li>
<br>
<li><a href="https://ca.linkedin.com/in/matthewteolis"><strong>Matthew Teolis</strong></a> Back end, traveling trends analysis.</li>
<br>
<li><a href="http://izkevin.com"><strong>Kevin Zhang</strong></a> Front end, JQuery genie. Main Interface.</li>
</ul>
</div>
</div>
</div>
</body>
</html>