26 lines
827 B
HTML
26 lines
827 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@2.44.0/tabler-icons.min.css">
|
|
<link rel="stylesheet" href="stylegame.css">
|
|
<title>BattleShip</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container">
|
|
<div id="sub-container">
|
|
<canvas id="mapa" tabindex="0"></canvas>
|
|
</div>
|
|
<div id="sub-container">
|
|
<canvas id="minimapa" tabindex="1"></canvas>
|
|
<textarea id="chat" readonly>Battleship</textarea>
|
|
<input type="text" name="" id="">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script src="socket.io/socket.io.js"></script>
|
|
<script type="module" src="./js_game/battleship.js"></script>
|
|
</html> |