-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>Document</title>
</head>
<body>
<div class="container-block">
<h1>ROCK, PAPER, SCISSORS!</h1>
<h2>PICK YOUR CHOICE</h2>
<div class="container-flex">
<div class="scores">
<div class="human-score">
<p>YOUR SCORE</p>
<p class="points">0</p>
</div>
<div class="computer-score">
<p>COMPUTER'S SCORE</p>
<p class="points">0</p>
</div>
</div>
<div class="buttons">
<button id="rock">ROCK</button>
<button id="paper">PAPER</button>
<button id="scissors">SCISSORS</button>
</div>
</div>
<p id="roundResult"></p>
<p id="gameResult"></p>
</div>
</body>
</html>