-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (42 loc) · 2.16 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>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<meta property = "og:site_name" content = "ClickAllDay">
<meta property = "og:title" content = "ClickAllDay - The classic clicks got better">
<meta property = "og:type" content = "website">
<meta property="og:url" content="https://driftasimov.github.io/ClickAllDay/">
<meta property="og:image" content="https://cdn.discordapp.com/attachments/822026003269419028/840521336933056513/icon.png">
<meta property="og:description" content="Do you want to break your mouse? Whatever your answer is, you should try some clicks.">
<meta name="theme-color" content="#B2EFF7">
<title>ClickAllDay</title>
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Maven+Pro:wght@500&display=swap" rel="stylesheet">
<link rel='stylesheet' type='text/css' media='screen' href='style.css'>
<link rel="shortcut icon" type="image/x-icon" href="icon.png" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/html2canvas.min.js"></script>
</head>
<body>
<audio id = "bgm" controls autoplay preload="auto" hidden loop onerror = "oops()" src = 'music.mp3'>
</audio>
<center>
<h2 class = 'head' id = 'head'>Unmute your speakers and press 'x' or tap on the button for Magic</h2>
</center>
<input id = "slider" type = "range" min = '0' max = '100' value = '50'>
<center>
<button onclick = "pong()" type = "button" id = "mov" name = "mainButton">
<p><a id = "clicks">0</a></p>
</button>
</center>
<h3 id = "time">0:00</h3>
<center>
<div class = "music-upload" id = "music-upload">
<button class = "btn" id = "btn">Upload an Audio File</button>
<input type = "file" name = "audio" id = "uploaded" onchange = "file(event)" accept=".mp3, .wav, .ogg"/>
</div>
</center>
<script src='main.js'></script>
</body>
</html>