27 lines
857 B
HTML
27 lines
857 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@2.44.0/tabler-icons.min.css">
|
|
<link rel="stylesheet" href="style.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></textarea>
|
|
<input type="text" name="" id="">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script type="module" src="./game.js"></script>
|
|
|
|
</html> |