-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 980 Bytes
/
index.html
File metadata and controls
30 lines (27 loc) · 980 Bytes
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">
<title>RockPaperSc</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Container for the game options -->
<h1>The Rizzer game</h1>
<div class="gameEndMsg"></div>
<div class="container">
<div class="play-btn"><i class="fa-solid fa-hand-back-fist"></i>Rock</div>
<div class="play-btn"><i class="fa-solid fa-hand"></i>Paper</div>
<div class="play-btn"><i class="fa-solid fa-hand-scissors"></i>Scissor</div>
</div>
<div class="scoreNav">
<div class="gameStatus"><h3></h3></div>
<h3>Your score: <span>0</span></h3>
<h3>Computer Score: <span>0</span></h3>
</div>
<div class="footer"></div>
<script src="index.js"></script>
<script src="https://kit.fontawesome.com/9281144b5b.js" crossorigin="anonymous"></script>
</body>
</html>