-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissors</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div id="reset-game">
</div>
<div id="stats" class="stats-layout">
<p>Wins: <span id="wins"></span></p>
<p>Draws: <span id="draws"></span></p>
<p>Loses: <span id="loses"></span></p>
</div>
<div id="game" class="game-layout">
<div class="inner-game">
<div id="ai-choice" class="choice">
</div>
<div id="game-text">Rock, Paper, Scissors?</div>
<div id="player-choice">
<button type="button" id="rock" class="choice">
</button>
<button type="button" id="paper" class="choice">
</button>
<button type="button" id="scissors" class="choice">
</button>
</div>
</div>
</div>
<script src="./scripts.js"></script>
</body>
</html>