summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-12-11 11:02:39 -0500
committerFreya Murphy <freya@freyacat.org>2025-12-11 11:02:39 -0500
commit92d03be7004e7fa7fea7be6910c3c0be830a774e (patch)
treeeb7ac4ab6593fd6214963e5764b88bc4bca3e837 /index.html
downloadminecraftjs-92d03be7004e7fa7fea7be6910c3c0be830a774e.tar.gz
minecraftjs-92d03be7004e7fa7fea7be6910c3c0be830a774e.tar.bz2
minecraftjs-92d03be7004e7fa7fea7be6910c3c0be830a774e.zip
initialHEADmain
Diffstat (limited to 'index.html')
-rw-r--r--index.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..91de0e3
--- /dev/null
+++ b/index.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="author" content="freya">
+ <title>minecraft</title>
+ <style>
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ background: black;
+ }
+
+ canvas {
+ width: 100%;
+ height: 100%;
+ }
+ </style>
+ <script type="module" src="js/wgpu/wgpu.js"></script>
+ </head>
+ <body>
+ <script type="module" src="js/minecraft.js"></script>
+ </body>
+</html>