-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 1.63 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
<!--
* CIRCLES
* repo: https://github.com/C-W-Z/circles
* copyright (c) 2023 C-W-Z
* CC BY-NC-SA 4.0 (https://creativecommons.org/licenses/by-nc-sa/4.0/)
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="a reaction game">
<meta name="author" content="C-W-Z">
<!-- Title -->
<title>CIRCLES</title>
<!-- Preload & Preconnect -->
<link rel="preload" as="style" href="style.css">
<link rel="preload" as="script" href="main.js">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<main>
<h1>CIRCLES</h1>
<section id="scores">
<div id="current-score">0</div>
<div id="highest-score">0</div>
</section>
<section id="canvases">
<canvas id="canvas-back"></canvas>
<canvas id="canvas"></canvas>
<canvas id="canvas-front"></canvas>
</section>
<section id="btns">
<div class="btn" id="easy-btn">easy</div>
<div class="btn" id="normal-btn">normal</div>
<div class="btn" id="hard-btn">hard</div>
<div class="btn" id="insane-btn">insane</div>
</section>
<div id="explain" class="hide">
Touch Screen / Press Any Key when a ball hits a line
</div>
</main>
<br>
<a href="https://github.com/C-W-Z/circles">© 2023 C-W-Z</a>
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>
<!-- Scripts -->
<script src="main.js" defer></script>
</body>
</html>