-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstuff.html
25 lines (25 loc) · 831 Bytes
/
stuff.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
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="topnav">
<a href="index.html">Home</a>
<a class="active" href="stuff.html">My Stuff</a>
</div>
<div class="page">
<h1>My Stuff</h1>
<p>
<!-- <a href="projects/online-multiplayer-test/index.html">Online Multiplayer test</a>
<br> -->
<a href="projects/circuit-simulator/index.html">Circuit Simulator</a>
<br>
<a href="../Transposer/index.html">Transposition Calculator</a>
<br>
<a href="../ChineseChess/index.html">Chinese Chess</a>
</p>
</div>
</body>
</html>