-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
41 lines (39 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sean Ankenbruck | Developer</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800|Open+Sans+Condensed:300|Raleway:400,700,100' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1>Sean Ankenbruck</h1>
<h2>Developer</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Portfolio</a></li>
<li><a href="about.html" class="selected">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<section>
<img src="img/sean.jpg" alt="photograph of sean" class="profile-photo">
<h3>About</h3>
<p>Hello there, my name is Sean Ankenbruck. This is a sample website that I am using to develop my skills as a Ruby Developer. Enjoy and thanks for visiting :)</p>
<p>If you would like to follow me on Twitter, my username is <a href="https://twitter.com/seanankenbruck">@seanankenbruck</a>.</p>
</section>
<footer>
<a href="https://twitter.com/seanankenbruck"><img src="img/twitter-button.png" alt="Twitter Logo" class="social-icon"></a>
<a href="https://www.facebook.com/sean.ankenbruck"><img src="img/fb-button.png" alt="Facebook Logo" class="social-icon"></a>
<p>© 2014 SMA.</p>
</footer>
</div>
</body>
</html>