-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (73 loc) · 2.86 KB
/
index.html
File metadata and controls
96 lines (73 loc) · 2.86 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<base href="{{site.baseurl}}"
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>RPS:Final Fist</title>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/9e54a7e65f.js" crossorigin="anonymous"></script>
</head>
<body>
<header id="header">
</header>
<div id="main-container">
<!-- Header -->
<div class="background">
<!-- Scoreboard -->
<div class="countdown-container">
<div class="countdown-box">
<h1 class="countdown-text"></h1>
<h1 class="timer"></h1>
</div>
<div class="message-container">
<p class="ending-text"></p>
<p class="game-text"></p>
<p class="game-subtext"></p>
<p class="game-over"></p>
</div>
</div>
<!-- Gameplay messages-->
<!-- Content -->
<div class="game-container">
<div class="user-hand">
<img src="./assets/images/player/player-rock.png" id="user-hand" class="player-hand">
</div>
<img src="./assets/images/computer/computer-rock.png" class="computer-hand">
</div>
<!-- Life bars -->
<footer>
<div class="life-container">
<div class="player-life-bar">
</div>
<!-- Blinking credit and copyright text -->
<div class="credit-container">
<p class="credit-text blink">PRESS ENTER TO START</p>
<p class="credit-display blink">INSERT COIN</p>
</div>
<div class="cpu-life-bar"></div>
</div>
</footer>
</div>
</div>
<!-- <div class="start-music"> -->
<i class="toggle-music fa-solid fa-volume-xmark"></i>
<!-- </div> -->
<div class="button-container">
<button class="buttons rock-button" id="rock">Rock</button>
<button class="buttons scissors-button" id="scissors">Scissors</button>
<button class="buttons paper-button" id="paper">Paper</button>
</div>
<div class="strike-button-container">
<button class="strike-button">Strike!</button>
</div>
<footer>
<p>Music composed by Kazunaka Yamane</p>
<p>Copyright 2022 James Winston</p>
<p>With Double Dragon ♥ </p>
</footer>
<script src="./script.js"></script>
</body>
</html>