-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (89 loc) · 2.55 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Battleship</title>
<link
href="https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<link
href="https://unpkg.com/[email protected]/css/nes.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1 class = "title">Battleship</h1>
<div class="message-bar">this message is hidden</div>
<main class = game>
<section class="game__panel menu">
<h2 class = "subtitle">Menu:</h2>
<div class="controls">
<button class="button start-button nes-btn is-success">Start game</button>
<div class="controls__panel nes-field is-inline">
<input
type="text"
class="input-field nes-input is-warning"
maxlength="2"
size="5"
placeholder = "a1"
/>
<button type="button" class="button fire-button nes-btn is-warning">
FIRE!
</button>
</div>
</div>
</section>
<canvas id="canvas" width="600" height="610"></canvas>
<section class="game__panel stats">
<h2 class = "subtitle">Stats:</h2>
<ul class = stats-list>
<li>
<span>4x-ships:</span>
<input
type="text"
size="3"
class="stats__4x-ships"
value="0"
readonly
tabindex="-1"/></li>
<li> <span>3x-ships:</span>
<input
type="text"
size="3"
class="stats__3x-ships"
value="0"
readonly
tabindex="-1"
/></li>
<li><span>2x-ships:</span>
<input
type="text"
size="3"
class="stats__2x-ships"
value="0"
readonly
tabindex="-1"
/></li>
<li>
<span>1x-ships:</span>
<input
type="text"
size="3"
class="stats__1x-ships"
value="0"
readonly
tabindex="-1" /></li>
</ul>
</section>
</main>
<footer class = "footer">
<a href="https://github.com/hotcoldwave" target="_blank" aria-label="Github Link">
<i class="icon nes-icon github is-medium"></i>
</a>
</footer>
<script src="./index.js"></script>
</body>
</html>