-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
36 lines (32 loc) · 1.18 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
<!DOCTYPE HTML>
<html>
<html>
<head>
<title>Coreys Amazing Website</title>
</head link rel="stylesheet" href="style.css">
<body>
<div id="all-contents">
<div id="all-contents">
<nav>
<h1>Coreys Glorious Website</h1>
<ul id="nav-ul">
<li class="nav-li">
<a class="nav-a" href="index.html">Home</a>
</li>
<li class="nav-li">
<a class="nav-a" href="portfolio.html">Portfolio</a>
</li>
</ul>
</nav>
<main>
<div class="content">
<h1>Portfolio</h1>
<ul id="portfolio">
<li><a href="projects/platformer/">Platformer : A cannon - dodging, collectible - grabbing adventure game for Halleb0t</a></li>
<li><a href="projects/bouncing-box/">Bouncing Box : A project that gives you a taste of game development on the web </a></li>
<li><a href="projects/circularity/">Circularity : A motion poem using random number generation and velocity applied to circle shapes...</a></li>
</ul>
</div>
</main>
</body>
</html>