-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
40 lines (40 loc) · 1.88 KB
/
about.html
File metadata and controls
40 lines (40 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Brian Hankins | Web Developer</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='https://fonts.googleapis.com/css?family=Lobster|Ubuntu+Condensed' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
<meta name="viewport" content="width=device-width, initial-scale=0.7"> <!-- changed this from 1.0 to 0.7-->
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1>Brian Hankins</h1>
<h2>Web 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/Meoldnavy.jpg" alt="Photograph of Brian Hankins" class="profile-photo">
<h3>About</h3>
<p>Hi! I'm Brian Hankins and this is my first website I have created. I'm new to web development but learning new things every day using Team Treehouse! I really love web development and hope to take on new adventures in years to come! If you have any questions or comments, please feel free to contact me! Hope you enjoy the site as much as I enjoyed making it!</p>
<p>Click <a href="http://www.linkedin.com/in/bhank">here</a> to follow me on Linkedin!</p>
</section>
<footer>
<a href="http://facebook.com/bhankins000"><img src="img/facebook-wrap.png" alt="Facebook Logo" class="social-icon"></a>
<a href="http://www.linkedin.com/in/bhank"><img src="img/linkiden-wrap.png" alt="Linkiden Logo" class="social-icon"></a>
<p>© 2015 Brian Hankins.</p>
</footer>
</div>
</body>
</html>