-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
104 lines (102 loc) · 3.72 KB
/
Copy pathabout.html
File metadata and controls
104 lines (102 loc) · 3.72 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
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Lendr</title>
<link
href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap"
rel="stylesheet"
/>
<link href="node_modules/normalize.css/normalize.css" rel="stylesheet" />
<link href="css/index.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<nav class="navigation">
<div class="navWrapper">
<a href="index.html" class="logoNav">
<div class="logo">
<i class="fa fa-exchange "></i>
<h1>Lendr</h1>
</div>
</a>
<div class="linksWrapper">
<div class="navLinks">
<a href="https://frontend.lendr.now.sh/">Sign Up</a>
<a href="https://frontend.lendr.now.sh/">Log In</a>
<a href="#">Contact</a>
</div>
</div>
</div>
</nav>
<div class="container">
<header class="aboutHdr">
<h1>Meet Our Team</h1>
</header>
<div class="profileCont">
<div class="profile ">
<img src="images/ali.png" alt="">
<p>Ali Rajaii</p>
<p>Project Lead</p>
<a href="https://github.com/rajaii"><img src="images/github.png" alt=""></a>
</div>
</div>
<div class="profileCont">
<div class="profile">
<img src="images/jacob.jpg" alt="">
<p>Jacob Washburn</p>
<p>Web UI</p>
<a href="https://github.com/JacobWashburn"><img src="images/github.png" alt=""></a>
</div>
<div class="profile">
<img src="images/courtland.png" alt="">
<p>Courtland Bourgeois</p>
<p>Web UI</p>
<a href="https://github.com/Courtland-Bourgeois"><img src="images/github.png" alt=""></a>
</div>
</div>
<div class="profileCont">
<div class="profile">
<img src="images/adam.png" alt="">
<p>Adam Winzenburger</p>
<p>React</p>
<a href="https://github.com/adamwinzdesign"><img src="images/github.png" alt=""></a>
</div>
<div class="profile">
<img src="images/darren.png" alt="">
<p>Darren Carrillo</p>
<p>React</p>
<a href="https://github.com/darrenjcarrillo"><img src="images/github.png" alt=""></a>
</div>
<div class="profile">
<img src="images/forrest.png" alt="">
<p>Forrest Durabian</p>
<p>React</p>
<a href="https://github.com/Forrestdarabian"><img src="images/github.png" alt=""></a>
</div>
</div>
<div class="profileCont">
<div class="profile">
<img src="images/jarvise.png" alt="">
<p>Jarvise Billups-Brown</p>
<p>Backend</p>
<a href="https://github.com/Fullmetal235"><img src="images/github.png" alt=""></a>
</div>
</div>
</div>
<footer>
<div class="footerContent">
<a href="index.html">Home</a>
<p>Copyright ©Lendr 2019</p>
<a href="#">Contact</a>
</div>
</footer>
</body>
</html>