-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathspawn.html
More file actions
35 lines (32 loc) · 994 Bytes
/
spawn.html
File metadata and controls
35 lines (32 loc) · 994 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Spawn Progress</title>
<script src="./resources/frameworks/jquery-3.2.1.min.js" type="text/javascript"></script>
<script type="text/javascript" src="./resources/spawn/progress-table.js"></script>
<link rel="stylesheet" href="./resources/spawn/spawn.css">
</head>
<body>
<h1>Spawn Progress Tracker</h1>
<p style="color:red">NOTE: THIS TRACKER IS UNFINISHED AN WILL NOT SAVE DATA, USE AT OWN RISK</p>
<nav>
<a href="./index.html">Main</a>
<a href="./sandbox.html">Sandbox</a>
<a href="./game.html">Game</a>
<a href="./rules.html">Rules</a>
<a href="./questions.html">Questions</a>
<a href="./spawn.html">Spawn</a>
</nav>
<table id="progress-table">
<tr>
<th>Name</td>
<th>Use</td>
<th>Designed</td>
<th>Started</td>
<th>Completed</td>
<th>Populated</td>
</tr>
</table>
</body>
</html>