-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
48 lines (39 loc) · 1.21 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
48
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
</head>
<body>
<nav class="main-nav">
<ul>
<li>
<a class="active" href="about.html"><span>About</span></a>
</li>
<li>
<a href="work.html"><span>Work</span></a>
</li>
</ul>
</nav>
<div class="logo">
<a href="/">
<img src="./img/head-white.png">
<span>orbital labs</span>
</a>
</div>
<div class="content">
<h1>About</h1>
<div style="margin-top: 30px">
<div>Sean Hess</div>
<div style="color: #AAA">Founder, Consultant</div>
<div style="color: #AAA">[email protected]</div>
</div>
<hr style="margin: 30px 0 30px 0" />
<div style="font-size: 30px">
<a href="http://twitter.com/seanhess"><span class="fa fa-twitter-square"></span></a>
<a href="http://linkedin.com/in/seanhess"><span class="fa fa-linkedin-square"></span>
<a href="http://github.com/seanhess"><span class="fa fa-github-square"></span>
</div>
</div>
</body>
</html>