-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.12 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
<!DOCTYPE html>
<html lang='en'>
<head>
<link rel="stylesheet" href="style.css">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<meta charset="utf-8">
<title>Rock Paper Scissors</title>
</head>
<body>
<section class="first-section">
<div class="game-box">
<h1 class="game-title">Rock Paper Scissors</h1>
<p id='round-winner'>Pick One!</p>
<p id='score'></p>
<div class="buttons-tray">
<button class="buttons btn-1 rock">👊 Rock</button>
<button class="buttons btn-2 paper">✋ Paper</button>
<button class="buttons btn-3 scissors">✌️Scissors</button>
</div>
<div class ='instructions-tray'>
<p class='instructions'>The first to win 5 rounds wins the game</p>
<button class='reset'>Reset</button>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>