-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.34 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<title>Home - boboquack</title>
<link rel="stylesheet" type="text/css" href="sharedstyles.css">
<link rel="shortcut icon" href="Github%20Favicon.ico" type="image/x-icon">
</head>
<body>
<ul class="topbaritem">
<li><a id="topbaractive" href="/">Home</a></li>
<li class="dropdown">
<a href="games" class="dropdowntop">Games</a>
<div class="dropdowntail">
<a href="/games/puzzlescript">Puzzlescript</a>
</div>
</li>
<li class="dropdown">
<a href="maths" class="dropdowntop">Maths</a>
<div class="dropdowntail">
<a href="/maths/finitegraph">Finite Graphing</a>
<a href="/maths/combigames">Combi Game Theory</a>
</div>
</li>
</ul>
<div id="topbarspace"></div>
<h1>
Welcome to boboquack's website!
</h1>
<p>
Hello!
</p>
<p>
If you're looking for games, you can go <a href="games/puzzlescript">here</a> for some internet games you can play by yourself.
</p>
<p>
If you're looking for maths, you can go <a href="maths/finitegraph">here</a> for a program which graphs functions on a contracted and finite plane, or <a href="maths/combigames">here</a> for an introduction into combinatorial game theory.
</p>
</body>
</html>