-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsandbox.html
More file actions
39 lines (35 loc) · 999 Bytes
/
sandbox.html
File metadata and controls
39 lines (35 loc) · 999 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
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Developer's Sandbox</title>
<script src="./resources/frameworks/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="./resources/sandbox/sandbox.js" type="text/javascript"></script>
<link rel="stylesheet" href="resources/global/style.css">
</head>
<body>
<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>
<h1>Developer's Sandbox</h1>
<h2>ATOM Live Server Stuff</h2>
<table id="atom-table">
<tr>
<th>Data Requests</th>
<th>Data Responses</th>
</tr>
</table>
<h2>ButtonPresents Stuff</h2>
<table id="hello-table">
<tr>
<th>Data Requests</th>
<th>Data Responses</th>
</tr>
</table>
</body>
</html>