mirror of https://github.com/dirtbags/tanks.git
31 lines
560 B
HTML
31 lines
560 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Tank Round</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="round.mjs" type="module"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Tank Round</h1>
|
|
|
|
<div id="game_box">
|
|
<canvas id="battlefield"></canvas>
|
|
</div>
|
|
|
|
<table id="results">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>Name</th>
|
|
<th>Score</th>
|
|
<th>Death</th>
|
|
<th>Killer</th>
|
|
<th>Error</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|