-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Odin Project: Rock, Paper, Scissors</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./style.css">
<script src="./script.js"></script>
</head>
<body>
<div id="root">
<div class="game-card">
<div class="select">
<select id="choice">
<option value="">Please, make your selection...</option>
<option value="rock">Rock</option>
<option value="paper">Paper</option>
<option value="scissors">Scissors</option>
</select>
</div>
<div id="info-bar"></div>
<div id="results">
<div class="score">
<div id="user-score">0</div>
:
<div id="cpu-score">0</div>
</div>
</div>
</div>
</div>
<script>
const rpsSelect = document.querySelector('#choice');
rpsSelect.addEventListener('change', handleRpsSelectChange);
</script>
</body>
</html>