-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (49 loc) · 1.72 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap');
</style>
<script src="./script.js" defer></script>
<script src="https://kit.fontawesome.com/a25906fcbb.js" crossorigin="anonymous"></script>
</head>
<body>
<h1>Rock Paper Scissors</h1>
<h2>Meet Binky.</h2>
<img src="img/tra-my-BjL7XCugMNY-unsplash.jpg" alt="A white cat with blue eyes stares at you from a laptop keyboard."
style="width: 400px; height: 250px;">
<h2>Five times World Champion.</h2>
<h2></h2>
<div class=button_bar>
<div class="buttons">
<button id="playerrock"><i class="fa-solid fa-hand-fist"></i><br>Rock</button>
<button id="playerpaper"><i class="fa-solid fa-hand"></i><br>Paper</button>
<button id="playerscissors"><i class="fa-solid fa-hand-scissors"></i><br>Scissors</button>
</div>
<div class="binkybtn">
<button class="binkyrock"><i class="fa-solid fa-paw"></i><br>Rock</button>
<button class="binkypaper"><i class="fa-solid fa-paw"></i><br>Paper</button>
<button class="binkyscissors"><i class="fa-solid fa-paw"></i><br>Scissors</button>
</div>
</div>
<div class='restart'>
<button>
Play Again
</button>
</div>
<div id="results">
<h2>
Binky wants to play... 5 rounds, you're blue.
</h2>
</div>
<div id="running_total">
<p>Hooman: <span class="player_score">0</span></p>
<p>Binky: <span class="binky_score">0</span></p>
</div>
</body>
</html>