-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (58 loc) · 2.06 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
63
<!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">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="modal.css">
<title>R-P-S-L-S</title>
</head>
<body>
<div class="container">
<header class="header">
<h1>Rock Paper Scissors Lizard Spock</h1>
<button id="restart" class="restart-btn">Restart Game</button>
<div id="score" class="score">
<p>Player: 0</p>
<p>Computer: 0</p>
</div>
</header>
<h2>Make Your Selection</h2>
<div class="choices">
<i id="rock" class="choice fas fa-hand-rock fa-5x"></i>
<i id="paper" class="choice fas fa-hand-paper fa-5x"></i>
<i id="scissors" class="choice fas fa-hand-scissors fa-5x"></i>
<i id="lizard" class="choice fas fa-hand-lizard fa-5x"></i>
<i id="spock" class="choice fas fa-hand-spock fa-5x"></i>
</div>
</div>
<div class="container rules">
<h2>Rules:</h2>
<p>Scissors cut Paper</p>
<p>Paper covers Rock</p>
<p>Rock crushes Lizard</p>
<p>Lizard poisons Spock</p>
<p>Spock smashes Scissors</p>
<p>Scissors decapitate Lizard</p>
<p>Lizard eats Paper</p>
<p>Paper disproves Spock</p>
<p>Spock vaporizes Rock</p>
<small>and as it always has</small>
<p>Rock crushes Scissors</p>
</div>
<footer>
<div class="container">
<small>by: Boxula Floskula</small>
</div>
</footer>
<!-- Modal -->
<div class="modal">
<div id="result" class="modal-content">
</div>
</div>
<script src='app.js'></script>
</body>
</html>