-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
49 lines (44 loc) · 1.27 KB
/
Copy pathportfolio.html
File metadata and controls
49 lines (44 loc) · 1.27 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- All content goes here -->
<div id="all-contents">
<nav>
<h1>My Portfolio</h1>
<ul id="nav-ul">
<li class="nav-li">
<a href="index.html">Home</a>
</li>
<li class="nav-li">
<a href="portfolio.html">Portfolio</a>
</li>
</ul>
</nav>
<main>
<div class="content">
<h1>Portfolio</h1>
<h3>FSD Projects</h3>
<ul id="portfolio">
<li>
<a href="fsd-projects/platformer/">Platformer: A cannon-dodging adventure game for Halleb0t</a>
</li>
<li>
<a href="fsd-projects/bouncing-box/">Bouncing Box: A fun introduction to web game development</a>
</li>
<li>
<a href="fsd-projects/circularity/">Circularity: A poetic motion experiment with circles</a>
</li>
<li>
<a href="fsd-projects/runtime/">Runtime : Fearless HalleBot goes on a side-scrolling adventure!</a>
</li>
</ul>
<!--ASD Projects will go here-->
</div>
</main>
</div>
</body>
</html>