-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (26 loc) · 956 Bytes
/
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">
<title>Rock Paper Scissors Game</title>
<script src="./script.js" defer></script>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h1 class="title">Rock Paper Scissors</h1>
<p class="description">Whoever wins five rounds</p>
<p class="content">Wins the game</p>
<p class="score">Select your choice to start</p>
<audio id="won" src="./sfx/won.mp3"></audio>
<audio id="lost" src="./sfx/gameover.mp3"></audio>
<audio id="win" src="./sfx/win.mp3"></audio>
<audio id="lose" src="./sfx/lose.mp3"></audio>
<audio id="tie" src="./sfx/tie.mp3"></audio>
<div class="button-group">
<button id="rock">ROCK 🪨</button>
<button id="paper">PAPER 📜</button>
<button id="scissors">SCISSORS ✂️</button>
</div>
</body>
</html>