-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.15 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.15 KB
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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Rock, Paper, Scissors</title>
<script src="js-file.js" defer></script>
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Audiowide">
</head>
<body>
<div class="game">
<div class="headline">
<h1>Rock, Paper or Scissors?</h1>
</div>
<div class="playZone">
<div class ="button" id="rock">
</div>
<div class ="button" id="paper">
</div>
<div class ="button" id="scissors">
</div>
</div>
<div class="results">
<h2>The first to reach 5 points is the winner:</h2>
</div>
<div class="players">
<div class="player" id="player">
<p>Player</p>
<p class="playerScore">0</p>
</div>
<div class="player" id="computer">
<p>Computer</p>
<p class="computerScore">0</p>
</div>
</div>
</div>
</div>
</body>
</html>