-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (64 loc) · 2.91 KB
/
index.html
File metadata and controls
66 lines (64 loc) · 2.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./dist/main.css" />
<link rel="stylesheet" href="src/styles/reset.scss" />
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<script src="dist/main.js"></script>
<title>Timer Fighter</title>
<link rel="icon" type="image/x-icon" href="https://cdn-icons-png.flaticon.com/512/2736/2736136.png">
<h1 class="title">Timer Fighter!</h1>
<div class="time-score">
<h2 class="timer"></h2>
<h2 class="kill-count"></h2>
</div>
</head>
<body>
<div id="mainContainer" >
<div id="menu">
<div class="options">
<p>Timer:</p>
<select class="game-options" id="time-select"">
<option value="30">30 Seconds</option>
<option value="60">60 Seconds</option>
<option value="120">120 Seconds</option>
</select>
<p>Fighter:</p>
<select class= "game-options"id="char-select"">
<option value="">Krillin</option>
<option value="">Work in Progress..</option>
</select>
<button class="menu-item" id="start">Start</button>
</div>
<div class="instructions">
<p id="instruction">Welcome to <mark class="ptitle">Timer Fighter</mark>, the game where you get to unleash all your rage and beat the living daylights out of some unsuspecting characters. It's like a boxing match, but with more punches, more mayhem, and absolutely no rules! </p>
<p id="instruction">"WASD" to Move</p>
<p id="instruction">"<" Light Attack</p>
<p id="instruction">">" Hard Attack</p>
<p id="instruction">"?" to Dash</p>
</div>
<!-- <button class="menu-item" id="instructions">Instructions</button> -->
<!-- <button class="menu-item" id="credits">Credits</button> -->
</div>
<canvas id="timer-fighter">
</canvas>
<div id="displayResults">
<h2 id="results">
</h2>
</div>
<div class="bottom-buttons">
<div class="music">Music</div>
<div class="restart">Restart</div>
<div>
<a href="https://github.com/vstoic/TimerFighter" target="_blank" class="github" >Github</a>
</div>
<div>
<a href="https://www.linkedin.com/in/victorcheng3/" target="_blank" class="linkedin" >LinkedIn</a>
</div>
</div>
</div>
</body>
</html>