-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Rock, Paper, Scissors</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!--<h1>Play Rock, Paper, Scissors!</h1>-->
<img src="https://static.wikia.nocookie.net/undertale/images/5/50/Mettaton_battle_box.gif"
alt="Mettaton from Undertale">
<div class="info">
<div class="game-count">First to 5 wins!</div>
<div class="results"></div>
</div>
<div class="scores">
<div class="player-score">YOU:<span class="player">0</span></div>
<div class="computer-score">COMPUTER:<span class="computer">0</span></div>
</div>
<div class="buttons">
<button class="active play">ROCK</button>
<button class="active play">PAPER</button>
<button class="active play">SCISSORS</button>
<button class="play-again">RETRY</button>
</div>
<script src="app.js"></script>
</body>
</html>