about summary refs log tree commit diff stats
path: root/html/flexagon/index.html
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2025-04-11 18:57:08 -0400
committerelioat <elioat@tilde.institute>2025-04-11 18:57:08 -0400
commita92a1d656cc3a9db22ec69fd53a25c4a5e8bf498 (patch)
treeba7589bf0aa7721d37602ac8cc37ff9e4801116f /html/flexagon/index.html
parent033f1f1196f741e3e943ad51bfc457226649183e (diff)
downloadtour-master.tar.gz
Diffstat (limited to 'html/flexagon/index.html')
-rw-r--r--html/flexagon/index.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/html/flexagon/index.html b/html/flexagon/index.html
new file mode 100644
index 0000000..5d42dec
--- /dev/null
+++ b/html/flexagon/index.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Flexagon Simulation</title>
+    <style>
+        body {
+            margin: 0;
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            min-height: 100vh;
+            background: #f0f0f0;
+        }
+        canvas {
+            border: 1px solid #ccc;
+            background: white;
+        }
+    </style>
+</head>
+<body>
+    <canvas id="flexagonCanvas"></canvas>
+    <script src="flexagon.js"></script>
+</body>
+</html>