-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.3 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
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Battleship</title>
<meta property="og:title" content="Web Battleship" />
<meta property="og:type" content="website" />
<meta property="og:description" content="An online multiplayer battleship game." />
<meta property="og:url" content="https://the-dev-bin.github.io/battleship" />
<meta property="og:image" content="https://github.com/the-dev-bin/battleship/raw/main/assets/battleship_cover.png" />
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" type="image/png" href="assets/favicon.ico">
</head>
<body>
<a id="invite" target="_blank"></a>
<div id="turn"></div>
<div id="board-container1" style="display: none;">
<div id="opponent-board" class="board" >
</div>
</div>
<div id="board-container2">
<div id="player-board" class="board">
</div>
</div>
<div class="ship-container">
</div>
</body>
</html>
<script src="https://unpkg.com/[email protected]/dist/peerjs.min.js"></script>
<script src="js/multiplayer.js"></script>
<script src="js/ship.js"></script>
<script src="js/init.js"></script>
<script src="js/board.js"></script>