-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 1.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
<head>
<link rel="icon" type="image/x-icon" href="favicon_io/android-chrome-512x512.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<title>24 - Card Game and Solver</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TJL95PPEJZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TJL95PPEJZ');
</script>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/addons/p5.sound.min.js"></script>
<script src="sketch2.js"></script>
<script src="checkPossible.js"></script>
<script src="objects/confetti.js"></script>
<script src="objects/button.js"></script>
<script src="objects/card.js"></script>
<script src="objects/slidingButton.js"></script>
<script src="objects/popup.js"></script>
<script src="objects/presetButton.js"></script>
</body>
<!-- <style>
html, body {
overflow-x: hidden;
}
body {
position: relative;
}
</style> -->