-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (28 loc) · 1.45 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ancliz</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link href="../css/global.css" rel="stylesheet">
<link href="../css/home-styles.css" rel="stylesheet">
</head>
<body class="flex flex-col justify-between min-h-screen text-center">
<canvas id="particleCanvas"></canvas>
<main id="my-links" class="flex-grow flex flex-col items-center justify-center space-y-4">
<script type="module" src="../js/mylinks.js"></script>
</main>
<footer class="mt-8 text-gray-400">
<p>© 2024 Ancliz. All Rights Reserved.</p>
</footer>
</body>
<script type="module" src="../js/exceptions.js"></script>
<script type="module" src="../js/vec2d.js"></script>
<script type="module" src="../js/particle-background.js"></script>
</html>