-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
42 lines (35 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio | My First Website</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/menu.css">
</head>
<body>
<nav>
<ul class="my-custom-nav">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<h1>Page Title Goes Here</h1>
<h2>Nothing to see here</h2>
<div class="portfolio-gallery">
<div>
<a href="portfolios/1.html"> Portfolio 1</a>
<a href="portfolios/2.html"> Portfolio 2</a>
<a href="portfolios/3.html"> Portfolio 3</a>
<a href="portfolios/4.html"> Portfolio 4</a>
<a href="portfolios/5.html"> Portfolio 5</a>
</div>
</div>
</main>
<footer>Started at the bottom and we still here!</footer>
<script src="js/main.js"></script>
</body>
</html>