-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
72 lines (62 loc) · 2.08 KB
/
portfolio.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Zeke Graves - Portfolio</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
</head>
<body>
<!-- Header -->
<header>
<div id="headerContent">
<!-- Name -->
<h1 id="logo">Zeke Graves</h1>
<!-- Navigation Bar -->
<nav>
<a href="index.html">About</a> |
<a href="portfolio.html">Portfolio</a> |
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<!-- Portfolio -->
<main>
<h1>Portfolio</h1>
<hr />
<section class="portfolioTile">
<img src="assets/images/placeholder_image_01_resized.JPG" alt="Project 1" />
<div class="portfolioLink">
<a href="portfolio.html">Project 1</a>
</div>
</section>
<section class="portfolioTile">
<img src="assets/images/placeholder_image_05_resized.JPG" alt="Project 2" />
<div class="portfolioLink">
<a href="portfolio.html">Project 2</a>
</div>
</section>
<section class="portfolioTile">
<img src="assets/images/placeholder_image_07_resized.JPG" alt="Project 3" />
<div class="portfolioLink">
<a href="portfolio.html">Project 3</a>
</div>
</section>
<section class="portfolioTile">
<img src="assets/images/placeholder_image_08_resized.JPG" alt="Project 4" />
<div class="portfolioLink">
<a href="portfolio.html">Project 4</a>
</div>
</section>
<section class="portfolioTile">
<img src="assets/images/placeholder_image_11_resized.JPG" alt="Project 5" />
<div class="portfolioLink">
<a href="portfolio.html">Project 5</a>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<small>© Copyright 2018, Zeke Graves</small>
</footer>
</body>
</html>