-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (27 loc) · 978 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
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<!-- <script src="https://kit.fontawesome.com/1c5c45f61c.js" crossorigin="anonymous"></script> FONTAWESOME KIT -->
<title>Rock Paper Scissors 3</title>
</head>
<body>
<h1>Rock Paper Scissors</h1>
<div class="container">
<h2>Choose your weapon</h2>
<div class="buttons" id="button">
<button class="player" id="Rock">Rock</button>
<button class="player" id="Paper">Paper</button>
<button class="player" id="Scissors">Scissors</button>
</div>
<h2>Computer</h2>
<div class="displayComp"></div>
<h2>Result</h2>
<div class="displayresult"></div>
</div>
<button class="playagain" id="playagain">Play Again</button>
<script src="script.js"></script>
</body>
</html>