-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 961 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./main.css">
</head>
<body>
<div class='top-bar'>
<img src="./owl.png" class="my-name" width="50px" height="40px">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
<div id="home" class="home">Ian Engineering</div>
<div id="about" class="about">
<h1>About Me</h1>
<div class="about-content-container">
<div class="about-content">I am a software engineer based out of DC. I like building beautiful, high performance applications.</div>
<img class="about-img" src="./ian.jpeg">
</div>
</div>
<div id="contact" class="contact">
<h1 class="contact-header">Contact</h1>
<div class="contact-links-container">
<a href="mailto:[email protected]">email</a>
<a href="https://www.linkedin.com/in/ianbulmer/">linkedin</a>
<a href="https://github.com/ibulmer">github</a>
</div>
</div>
</body>
</html>