-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (89 loc) · 3.2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jonathan Werz</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header>
<h1>Jonathan Werz's Portfolio</h1>
<nav>
<ul>
<li>
<a href="#about-me">About Me</a>
</li>
<li>
<a href="#my-work">My Work</a>
</li>
<li>
<a href="#contact-me">Contact Me</a>
</li>
</ul>
</nav>
</header>
<section id="about-me" class="my-bio">
<article class="me">
<h2>About Me</h2>
<figure>
<img src="./assets/images/profilepic.jpg" alt="this ugly mug">
</figure>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Eius explicabo cumque eos amet, quod magni ducimus perspiciatis voluptate quis aliquid harum vitae accusamus, doloribus quia ad cupiditate? Illo, eligendi praesentium!
</p>
</article>
</section>
<main id="my-work" class="portfolio">
<h2>
Portfolio
</h2>
<section class="projects">
<article class="run-buddy">
<img src="./assets/images/hero-bg.jpg" alt="This site helped me learn HTML and CSS"/>
<h3>
<a href="https://jdwerz83.github.io/run-buddy/" target="_blank">Run Buddy</a>
</h3>
</article>
<article class="challenge">
<img src="./assets/images/search-engine-optimization.jpg" alt="I refactored the code of this site"/>
<h3>
<a href="https://jdwerz83.github.io/HTML-CSS-Git-Challenge/" target="_blank">Horiseon</a>
</h3>
</article>
<article class="prost">
<img src="./assets/images/prostpic.png" alt="cocktail recipe app i made"/>
<h3>
<a href="https://mcnairjm.github.io/cocktail-app/" target="_blank">Prost</a>
</h3>
</article>
<article class="alley26">
<img src="./assets/images/alleysign.jpg" alt="cocktail recipe app i made"/>
<h3>
<a href="https://github.com/polizoto/Prost_4.0" target="_blank">Alley26</a>
</h3>
</article>
</section>
</main>
<section id="contact-me" class="contact">
<div>
<h2>
Contact Me
</h2>
<address class="address">
2404 Alabama Avenue <br/>
Durham, NC <br/>
27705 <br/>
P: 919.923.3996 <br/>
E: <a href="jdwerz83@gmail.com">jdwerz83@gmail.com</a>
</address>
</div>
</section>
<footer>
<p>
Placeholder text. i know i need to do more with this project as a whole, but i'll get there eventually.
</p>
</footer>
</body>
</html>