-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (47 loc) · 1.74 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>🎮 Rock Paper Scissors</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Bungee+Shade">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Oxanium">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Noto+Emoji">
</head>
<body>
<div class="header">ROCK, PAPER, SCISSORS</div>
<div class="intro"> FIRST TO 5</div>
<div class="buttons">
<div class="rock" id="rock">
<button value="ROCK">🪨</button>
</div>
<div class="paper" id="paper">
<button value="PAPER">📄</button>
</div>
<div class="scissors" id="scissors">
<button value="SCISSORS">✂️</button>
</div>
</div>
<div class="result">
<div class="player">
<div class="weapon" id="player_weapon">?</div>
<div>PLAYER</div>
</div>
<div class="computer">
<div class="weapon" id="computer_weapon">?</div>
<div>COMPUTER</div>
</div>
</div>
<div class="score">
<div class="text" id="score_text"></div>
<div class="counter">
<div class="player" id="player_counter">0</div>
<div>-</div>
<div class="computer" id="computer_counter">0</div>
</div>
</div>
<div class="footer">
<div>BY LIZZY PEDLEY</div>
<script src="javascript.js"></script>
</body>
</html>