Battleship/index.html

27 lines
743 B
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>
<script src="jquery-3.6.0.min.js"></script>
<script src="jquery.fittext.js"></script>
<script src="index.js"></script>
2022-01-16 11:56:53 +01:00
<link rel="image/x-icon" href="favicon.ico">
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>
<div id="bg"></div>
<div id="fg">
<div id="playfield">
<div id="remotediv">
<table id="remote">
</table>
</div>
<div id="localdiv">
<table id="local">
</table>
</div>
2022-01-16 10:52:50 +01:00
</div>
</div>
2022-01-16 11:55:18 +01:00
</body>
2022-01-16 10:52:50 +01:00
</html>