-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (33 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Play Your Games</title>
<!-- <script src="socket.io/socket.io.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.3.0/socket.io.js"></script>
<!-- sweet alert -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@sweetalert2/[email protected]/minimal/minimal.min.css">
<!-- p5.js -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.0.0/p5.min.js"></script> -->
<!-- muuri -->
<script src="https://unpkg.com/[email protected]/web-animations.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/muuri.min.js"></script>
<link rel="stylesheet" href="./styles/libs/muuri.css">
<!-- signals -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-signals/1.0.0/js-signals.min.js"></script>
<!-- reboot -->
<link rel="stylesheet" href="./styles/libs/reboot.css">
<!-- <link rel="stylesheet" href="./styles/libs/normalize.css"> -->
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- custom css -->
<link rel="stylesheet" href="./styles/ui.css">
<link rel="stylesheet" href="./styles/main.css">
<link rel="stylesheet" href="./styles/themes.css">
</head>
<body>
<script src="./js/main.js" type="module"></script>
</body>
</html>