robotwar/public/index.html

27 lines
1.1 KiB
HTML
Raw Normal View History

2013-08-17 20:27:38 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RobotWar</title>
2013-08-19 17:26:53 +00:00
<link href="css/main.css" rel="stylesheet" type="text/css">
2013-08-17 20:27:38 +00:00
<script type="text/javascript" src="js/lib/jquery-2.0.3.min.js"></script>
2013-08-17 21:04:10 +00:00
<script type="text/javascript" src="js/lib/Queue.js"></script>
2013-08-17 20:27:38 +00:00
</head>
<body>
2013-08-24 04:51:02 +00:00
<div class="centerer">
<h1>RobotWar</h1>
2013-08-24 12:54:01 +00:00
<h2>Welcome to the future. It is the year 2002. <br />
Wars still rage, but they are only fought by robots.</h2>
<div class="instruction-box">
<p>Type the names of up to five programs to load into the battle robots.</p>
<p>You may choose more than one of each.</p>
<p>Then press return.</p>
<p>(available robots: <span id="programNames"></span>)</p>
</div>
2013-08-24 12:54:01 +00:00
<input id="programsInput" type="text" autofocus></input>
2013-08-24 04:51:02 +00:00
<canvas id="canvas" width="600" height="600"></canvas>
</div>
<script src="js/main.js"></script>
2013-08-17 20:27:38 +00:00
</body>
</html>