-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfun.php
29 lines (28 loc) · 977 Bytes
/
fun.php
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
<!DOCTYPE html>
<html>
<head>
<title>Mercerenies - Fun</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<?php include('private/header.php'); ?>
<div class="page content">
I'll be posting random fun things here, some of which are on external sites and some
of which I host.
<ul>
<li>
<a href="wuas/">Wish Upon A Star</a> - A forum game I run. Here you can find reference material
for miscellaneous effects in the game itself.
</li>
<li>
<a href="algebra/">Algebraic Structure Reference</a> - I couldn't find a good comprehensive one of
these, so I wrote my own. Check it out if you're interested in abstract algebra!
</li>
<li>
<a href="puzzles.php">Puzzles and Riddles</a> - A few of my personal favorite puzzles.
</li>
</ul>
</div>
<?php include('private/footer.php'); ?>
</body>
</html>