-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.18 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Ben Murray</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav>
<div id="home">
<div class="profile_name">
Ben Murray
</div>
<div class="nav-div">
<a class="topmenu" href="index.html">About</a>
<a class="topmenu" href="skills.html">Skills</a>
<a class="topmenu" href="contact.html">Contact</a>
</div>
</div>
</nav>
<section class="about">
<img id="picture" src="assets/cartoon_picture.png" width="300" height="300">
<div class="description">
<p>
Software Developer<br>
<a href="https://github.com/bbmurray94">GitHub</a>
</p>
<ul>
<li>REST API development for 5.5 years</li>
<li>Blue Belt in BJJ</li>
<li>Owns too much LEGO</li>
</ul>
</div>
</section>
<div style="clear:both;"></div>
</body>
</html>