battleship/demo/public/index.html

21 lines
468 B
HTML
Raw Normal View History

2022-09-14 09:34:39 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Battleship War</title>
<link rel="stylesheet" href="style.css">
<script src="/socket.io/socket.io.js" defer></script>
<script src="client.js" defer></script>
</head>
<body>
<div id="main-container">
<h1>Battleship War</h1>
<canvas id="canvas"></canvas>
</div>
</body>
</html>