-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 1.47 KB
/
index.html
File metadata and controls
45 lines (41 loc) · 1.47 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Delicious+Handrawn&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>RPS</title>
</head>
<body>
<img src="images/background.svg">
<header>
<h1>Rock Paper Scissors</h1>
</header>
<main>
<div class="user col">
<p class="player">You</p>
<p>Round score: <span id="userScore">0</span></p>
<p>Games won: <span id="userGameWins">0</span></p>
<button class="choiceBtn" id="reset" onclick="resetAll()">Reset</button>
<div class="userControls">
<button class="choiceBtn" id="rock" data-move="rock"></button>
<button class="choiceBtn" id="paper" data-move="paper"></button>
<button class="choiceBtn" id="scissors" data-move="scissors"></button>
</div>
</div>
<div class="gameTable col">
<p class="roundResult">Make your move!</p>
</div>
<div class="computer col">
<p class="player">Computer</p>
<p>Round score: <span id="computerScore">0</span></p>
<p>Games won: <span id="computerGameWins">0</span></p>
</div>
</main>
</body>
</html>