-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (43 loc) · 1.74 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<title>Joshua Stevens: Portfolio Site</title>
</head>
<body>
<header>
<div class="headerContentWrapper">
<h1 class="logo">Joshua Stevens</h1>
<nav>
<ul class="navLinks">
<li>
<a class="active" href="index.html">About</a>
</li>
<li>
<a href="portfolio.html">Portfolio</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="contentWrapper">
<section>
<article>
<h1>About Me</h1>
<img class="profilePic" src="assets/images/IMG_0099.jpg" alt="Joshua Stevens bio photo">
<p>I was born in middle-of-nowhere Indiana, surrounded by cows and corn. Bored with the prospects of farm life, I focused my energies on art and music.</p>
<p>I started off my adult life pursuing a career in youth ministry but found myself spending all my free time doing graphic design. Eventually, I made it my full-time focus and took a job as a web designer, learning how to code HTML and CSS on the job.</p>
<p>Through the years, I've become more focused on development, and am looking forward to understanding the backend as well as I do the front so that I can bring my creative ideas to life.</p>
</article>
</section>
</div>
<footer>Copright © 2019</footer>
</body>
</html>