Battleship/index.html
2022-01-17 19:37:27 +01:00

46 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<!---cc bruno how are you right now-->
<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">
<table class="playfields" id="remote">
</table>
</div>
</td>
<td id="remoteauxtd" class="auxboards">
<div id="remoteauxdiv">
<table class="playfields" id="remoteaux">
</table>
</div>
</td>
</tr>
<tr id="locals">
<td id="localtd" class="mainboards">
<div id="localdiv">
<table class="playfields" id="local">
</table>
</div>
</td>
<td id="localauxtd" class="auxboards">
<div id="localauxdiv">
<table class="playfields" id="localaux">
</table>
</div>
</td>
</tr>
</table>
</div>
</body>
</html>