-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (39 loc) · 1.43 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
<!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">
<title>Rock Paper Scissors</title>
<script src="./script.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<h1>Ready to Play 5 Rounds?</h1>
<div class="playerChoice">
<button type="button" id="rock">
<img src="./images/rock.png" alt="rock" class="img-choice">
</button>
<button type="button" id="paper">
<img src="./images/paper.png" alt="paper" class="img-choice">
</button>
<button type="button" id="scissors">
<img src="./images/scissors.png" alt="scissors" class="img-choice">
</button>
</div>
<hr>
<div class="results">
<div class="player result-card">
<h2>You (<span id="player-wins"></span>)</h2>
<img src="" alt="" id="player">
</div>
<div class="computer result-card">
<h2>Computer (<span id="computer-wins"></span>)</h2>
<img src="" alt="" id="computer">
</div>
</div>
<h3 id="result"></h3>
</div>
</body>
</html>