-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
51 lines (51 loc) · 2.28 KB
/
about.html
File metadata and controls
51 lines (51 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About Me | Erica Irving</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Raleway:400,300,600,800' type='text/css'>
<link rel="stylesheet" type="text/css" href="./css/normalize.css">
<link rel="stylesheet" type="text/css" href="./css/skeleton.css">
<link rel="stylesheet" type="text/css" href="./css/main.css">
<link rel="shortcut icon" type="image/png" href="./images/firework.png"/>
</head>
<body>
<nav class="navbar">
<ul class="navbar-list">
<li class="navbar-item home-icon">
<a href="index.html" class="navbar-link">
<img src="images/home.png" alt="Home">
</a>
</li>
<li class="navbar-item">
<a href="portfolio.html" class="navbar-link">Portfolio</a>
</li>
<li class="navbar-item">
<a href="about.html" class="navbar-link nav-current">About</a>
</li>
</ul>
</nav>
<main>
<div class="container">
<div class="row">
<div class="four columns">
<img src="images/headshot.png" alt="Erica Irving">
</div>
<div class="eight columns wrapper">
<h3 class="introduction">This is me.</h3>
<h4>I'm an academic-turned-engineer who is passionate about forging meaningful connections between users and applications. I see programming as a way of literally using language to build solutions and ideas.</h4>
<a href="https://www.dropbox.com/s/e7jofrig73jqn4l/EricaIrving_Resume_Jan17.pdf?dl=0" target="_blank" class="button">Resumé</a>
<a href="https://github.com/ebirving" target="_blank" class="button">Github</a>
<a href="https://www.linkedin.com/in/erica-b-irving" target="_blank" class="button">Linkedin</a>
<a href="https://twitter.com/ericabirving" target="_blank" class="button">Twitter</a>
</div>
</div>
</div>
</main>
<footer>© 2016 Erica Irving | <a href="https://github.com/ebirving/ebirving.github.io">View on Github</a></footer>
</body>
</html>
<!--
Icons: Fireworks by Vivian Ziereisen from the Noun Project, Home by Thomas Helbig from the Noun Project, up curve arrow by Universal Icons from the Noun Project
-->