-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.24 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width" />
<script type="module" src="js/game.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="game">
<div class="grid grid--opponent">
<div class="grid__ships">
<div class="grid__ship grid__ship--hide"></div>
<div class="grid__ship grid__ship--hide"></div>
<div class="grid__ship grid__ship--hide"></div>
<div class="grid__ship grid__ship--hide"></div>
</div>
<div class="grid__shots"></div>
<div class="grid__crosshair grid__crosshair--hide"></div>
</div>
<div class="notification-area"></div>
<div class="grid grid--player">
<div class="grid__ships">
<div class="grid__ship grid__ship--hide"></div>
<div class="grid__ship grid__ship--hide"></div>
<div class="grid__ship grid__ship--hide"></div>
<div class="grid__ship grid__ship--hide"></div>
</div>
<div class="grid__shots"></div>
</div>
</div>
</body>
</html>