Battleship/index.html

50 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<!---hi Bruno how are you right now? Bad, hooks are not working. But will they now?. YES, THEY ARE WORKING!!!!!!!!-->
<script src="jquery-3.6.0.min.js"></script>
<script src="index.js"></script>
<link rel="icon" type="image/png" href="favicon.png">
<meta charset="utf-8">
<link rel="stylesheet" href="index.css">
<title>Battleship</title>
</head>
<body>
<div id="playfield">
<table id="maingrids">
<tr id="remotes">
<td id="remotetd" class="mainboards">
<div id="remotediv">
<label for="remote">Remote grid</label><br>
<table class="playfields" id="remote">
</table>
</div>
</td>
<td id="remoteauxtd" class="auxboards">
<div id="remoteauxdiv">
<label for="remoteaux">Remote aux grid</label><br>
<table class="playfields" id="remoteaux">
</table>
</div>
</td>
</tr>
<tr id="locals">
<td id="localtd" class="mainboards">
<div id="localdiv">
<label for="local">Local grid</label><br>
<table class="playfields" id="local">
</table>
</div>
</td>
<td id="localauxtd" class="auxboards">
<div id="localauxdiv">
<label for="localaux">Local aux grid</label><br>
<table class="playfields" id="localaux">
</table>
</div>
</td>
</tr>
</table>
</div>
</body>
</html>