-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
48 lines (40 loc) · 1.66 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
<!Doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Dan Dickerschied | Artist</title>
<link rel="stylesheet" href="CSS/reset.css">
<link href='https://fonts.googleapis.com/css?family=Montserrat|Raleway:400,800italic,700' 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">
</head>
<body>
<header>
<a href="index.html" id="logo" >
<h1>Dan Dickerschied</h1>
</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 id="about-content">
<img src="Img/about main.jpg" alt="photo of dan" class="profile-photo">
<h3>This is all about me.</h3>
<p>My name is Dan, my mission is to make bad-ass art and music.
I graduated DAAP in 2013 with a degree in Fine Arts. I have experience as a welder, painter, tattoo artist and musician.
I have a Siberian Husky named Luka, he is a shit head, gets fur everywhere, and he's always planning something.</p>
</section>
<footer>
<a href="https://www.facebook.com/dan.dickerscheid?fref=ts"><img src="Img/facebook.png" alt="facebook logo" class="social-icon"></a>
<a href="https://www.instagram.com/dandsculpture/"><img src="Img/icon_instagram.png" alt="instagram logo" class="social-icon"></a>
<p>© 2016 Dan Dickerschied</p>
</footer>
</div>
</body>
</html>