-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeybinds.html
More file actions
executable file
·71 lines (66 loc) · 2.83 KB
/
keybinds.html
File metadata and controls
executable file
·71 lines (66 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Keybinds - Frosty Volcano Summit</title>
<link href="/assets/main.css" rel="stylesheet" type="text/css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EGBMJBFWQF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-EGBMJBFWQF');
</script>
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
<link rel="manifest" type="application/manifest+json" href="site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta id="meta-title" property="og:title" content="Keybinds - Frosty Volcano Summit">
<meta id="meta-desc" property="og:description" content="List of all the keybinds that you can use.">
<meta property="og:site_name" content="Frosty Volcano Summit | reper2.github.io">
<meta name="theme-color" content="#14d8ee">
</head>
<body id="_bg">
<header>Frosty Volcano Summit</header>
<main>
<div id="back"></div>
<div id="grassBox">
<h1>Keybinds</h1>
<p class="kb-list">
<kbd>Ctrl</kbd><kbd>/</kbd> Open Keybind List<br>
<kbd>Alt</kbd><kbd>S</kbd> Show Audio Controls<br>
<kbd>Alt</kbd><kbd>H</kbd> Hide Audio Controls<br>
<kbd>Ctrl</kbd><kbd>I</kbd> Install App<br>
<kbd>Alt</kbd><kbd>U</kbd> Update URL<br>
<kbd>Ctrl</kbd><kbd>C</kbd> Copy Link<br>
<kbd>Alt+L</kbd> View License<br>
<kbd>Enter</kbd> Confirm Selection<br>
<kbd>Alt+R</kbd> Reset Selection<br>
<kbd>?</kbd> Random Selection<br>
<kbd>X</kbd> Open Source Code<br>
<br>
</p>
</div>
<form id="optForm"></form>
<div class="flex">
<div id="audctrls"></div>
<div id="install"></div>
<div id="urlUpdate"></div>
<div id="copy"></div>
</div>
<audio id="music"></audio>
</main>
<footer id="footer" class="bottom"></footer>
</body>
<script type="application/javascript" src="/app/lib/jquery.min.js"></script>
<script type="module" src="/app/dist/sw-installer.js"></script>
<script type="module" src="/app/dist/keybinds.js"></script>
<script type="module" src="/app/dist/app.js"></script>
<script type="module" src="/app/dist/audctrls.js"></script>
<script type="module" src="/app/dist/url-updater.js"></script>
<script type="application/javascript" src="/app/dist/back.js"></script>
<script type="module" src="/app/dist/copyLinkBtn.js"></script>
<script type="module" src="/app/dist/footer.js"></script>
</html>