tanks

Blow up enemy tanks using code
git clone https://git.woozle.org/neale/tanks.git

tanks / www
Neale Pickett  ·  2024-11-26

round.html

 1<!DOCTYPE html>
 2<html>
 3  <head>
 4    <title>Tank Round</title>
 5    <link rel="stylesheet" href="style.css">
 6    <script src="round.mjs" type="module"></script>
 7  </head>
 8  <body>
 9    <h1>Tank Round</h1>
10
11    <div id="game_box">
12      <canvas id="battlefield"></canvas>
13    </div>
14
15    <table id="results">
16      <thead>
17        <tr>
18          <th></th>
19          <th>Name</th>
20          <th>Score</th>
21          <th>Death</th>
22          <th>Killer</th>
23          <th>Error</th>
24        </tr>
25      </thead>
26      <tbody></tbody>
27    </table>
28
29  </body>
30</html>