-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 952 Bytes
/
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>
<head>
<title>Caterfoil Crafts</title>
<link href="https://cdn.tiye.me/logo/calcit.png" rel="icon" type="image/png" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"/>
<!-- <link rel="stylesheet" type="text/css" href="https://cdn.tiye.me/favored-fonts/main-fonts.css"> -->
<!-- <link rel="stylesheet" type="text/css" href="./assets/main.css"> -->
<style>
html {
background-color: black;
}
body {
margin: 0;
background-color: black;
overscroll-behavior-y: none;
overscroll-behavior-x: none;
}
canvas {
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<canvas id="canvas-container"></canvas>
<script type="module" src="./src/caterfoil.mjs"></script>
<!-- <script src="./target/js/debug/build/main/main.js"></script> -->
</body>
</html>