-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spock Rock Game</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="game-container">
<!-- Header -->
<div class="header">
<h1>Rock Paper Scissors Lizard Sopck</h1>
</div>
<!-- Player Container -->
<div class="player-container" id="player">
<h2>You - <span id="playerScore">0</span><span class="choice" id="playerChoice"></span></h2>
<i class="far fa-hand-rock" id="playerRock" title="Rock" onclick="select('rock')"></i>
<i class="far fa-hand-paper" id="playerPaper" title="Paper" onclick="select('paper')"></i>
<i class="far fa-hand-scissors" id="playerScissors" title="Scissors" onclick="select('scissors')"></i>
<i class="far fa-hand-lizard" id="playerLizard" title="Lizard" onclick="select('lizard')"></i>
<i class="far fa-hand-spock" id="playerSpock" title="Spock" onclick="select('spock')"></i>
</div>
<!-- Player Container -->
<div class="player-container" id="computer">
<h2>Computer - <span id="computerScore">0</span><span class="choice" id="computerChoice"></span></h2>
<i class="far fa-hand-rock" id="computerRock" title="Rock"></i>
<i class="far fa-hand-paper" id="computerPaper" title="Paper"></i>
<i class="far fa-hand-scissors" id="computerScissors" title="Scissors"></i>
<i class="far fa-hand-lizard" id="computerLizard" title="Lizard"></i>
<i class="far fa-hand-spock" id="computerSpock" title="Spock"></i>
</div>
<!-- Reset Icon -->
<i class="fas fa-sync-alt reset-icon" title="Reset" onclick="resetAll()"></i>
<!-- Results -->
<div class="result-container">
<h3 class="result-text" id="resultText"></h3>
</div>
</div>
<!-- Script -->
<script src="script.js" type="module"></script>
</body>
</html>