Battleship/index.html

46 lines
1.6 KiB
HTML
Raw Normal View History

2022-01-16 10:52:50 +01:00
<!DOCTYPE html>
<html>
2022-01-16 11:55:18 +01:00
<head>
2022-01-17 18:33:09 +01:00
<!---cc bruno-->
2022-01-16 11:55:18 +01:00
<script src="jquery-3.6.0.min.js"></script>
<script src="index.js"></script>
2022-01-16 13:17:47 +01:00
<link rel="icon" type="image/png" href="favicon.png">
2022-01-16 11:55:18 +01:00
<meta charset="utf-8">
2022-01-16 11:57:28 +01:00
<link rel="stylesheet" href="index.css">
2022-01-16 11:55:18 +01:00
<title>Battleship</title>
</head>
<body>
2022-01-16 13:56:53 +01:00
<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>
2022-01-16 10:52:50 +01:00
</div>
2022-01-16 11:55:18 +01:00
</body>
2022-01-16 10:52:50 +01:00
</html>