robotwar/public/index.html

27 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RobotWar</title>
<link href="css/main.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/lib/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="js/lib/Queue.js"></script>
</head>
<body>
<div class="centerer">
<h1>RobotWar</h1>
<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>
<input id="programsInput" type="text" autofocus></input>
<canvas id="canvas" width="600" height="600"></canvas>
</div>
<script src="js/main.js"></script>
</body>
</html>