-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.31 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.31 KB
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
<html>
<head>
<title>STONE•PAPER•SCISSORS</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<div class="layer-0">
<header>
<h1 class="heading-primary">Stone Paper Scissors</h1>
<button class="reload">Restart Game</button>
</header>
<div class="game-info">
<div class="players">
<div class="player">Player: <span id="score-0">1</span></div>
<div class="computer">Computer: <span id="score-1">0</span></div>
</div>
</div>
<div class="apparatus">
<h2 class="heading-primary add-on">Make Your Selection</h2>
<div class="hands">
<i id="rock" class="choice fas fa-hand-rock fa-10x"></i>
<i id="paper" class="choice fas fa-hand-paper fa-10x"></i>
<i id="scissors" class="choice fas fa-hand-scissors fa-10x"></i>
</div>
</div>
</div>
<div class="layer-1">
<div class="result">
</div>
<button class="continue">Continue</button>
</div>
<script src='https://kit.fontawesome.com/3da1a747b2.js'></script>
<script src="script.js"></script>
</body>
</html>