-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (64 loc) · 2.49 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="CybriaSoundboard is a fun little site with funny sounds to play">
<meta name="author" content="CybriaTech">
<meta name="keywords" content="sounds, sound, soundboard, soundboard unblocked, unblocked soundboard, funny soundboard">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://cybriasoundboard.com" />
<meta property="og:title" content="CybriaSoundboard" />
<meta property="og:description" content="CybriaSoundboard is a fun little site with funny sounds to play" />
<meta property="og:image" content="/i/l/opium-orig.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://cybriasoundboard.com/" />
<meta property="twitter:title" content="CybriaSoundboard" />
<meta property="twitter:description" content="CybriaSoundboard is a fun little site with funny sounds to play" />
<meta property="twitter:image" content="/i/l/opium-orig.png" />
<!-- Favicons -->
<link rel="icon" type="image/png" href="/img/page/favi-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/img/page/favi-32x32.png" sizes="32x32">
<link rel="apple-touch-icon" href="/i/f/apple-touch-icon.png" sizes="180x180">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3DN4YMCY54"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3DN4YMCY54');
</script>
<!-- Title -->
<title>CybriaSoundboards</title>
<!-- CSS -->
<link href="/css/style.css" rel="stylesheet" type="text/css" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet" type="text/css" />
<style>
body {
opacity: 0;
transition: opacity 1s ease-in-out;
}
body.loaded {
opacity: 1;
}
</style>
</head>
<body>
<script src="/import/header.js"></script>
<script src="/import/settings.js"></script>
<main>
<p class="main-title">CybriaSoundboard</p>
<div id="sounds">
</div>
</main>
<script>
document.addEventListener('DOMContentLoaded', function () {
document.body.classList.add('loaded');
});
</script>
<script src="/import/sounds.js"></script>
</body>
</html>