-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
35 lines (34 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Portfolio</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<div class="container">
<h1>Andrew Manley</h1>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li id="lastLink"><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section>
<h2>Portfolio</h2>
<div id="portfolioPic">
<img src="http://via.placeholder.com/200x200" alt="placeholder">
<img src="http://via.placeholder.com/200x200" alt="placeholder">
<img src="http://via.placeholder.com/200x200" alt="placeholder">
<img src="http://via.placeholder.com/200x200" alt="placeholder">
</div>
</section>
<footer>
Andrew Manley Copyright 2018 ©
</footer>
</body>
</html>