-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
50 lines (49 loc) · 2.04 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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Anthony Branze | Developer</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='http://fonts.googleapis.com/css?family=Changa+One:400,400italic|Open+Sans:400,700,700italic,400italic,800' 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=1.0">
<style>
nav {
color: white;
background-color: none;
}
</style>
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1>Anthony Branze</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/anthony.jpg" alt"photograph of Anthony Branze" class="Profile-photo">
<h3>About</h3>
<p>
Hello, My name is Anthony Branze, this is my Development portfolio where I share my favorite work, When I'm not developing websites or android apps, I am working full time at my day job and spending my nights building websites to create a seamless transition from culinary to IT as a Self-Taught Developer. In the little spare time I have I enjoy drinking coffee, reading the newest digital trends and spending time with my family, My wife and I are also expecting our first child this October!!</p>
<p>
If you would like to follow me on twitter my user name is
<a href="http://twitter.com/@pdxDev503">@PdxDev503</a></p>
</section>
<footer>
<img src="img/facebook-wrap.png" alt"Facebook" class="social-icon">
<img src="img/twitter-wrap.png" alt="Twitter" class="social-icon">
<p>© 2015 Anthony Branze.</p>
</footer>
</div>
</body>
</html>