40 lines
999 B
HTML
40 lines
999 B
HTML
|
<!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>
|