diff options
author | elioat <elioat@tilde.institute> | 2025-04-11 18:57:08 -0400 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2025-04-11 18:57:08 -0400 |
commit | a92a1d656cc3a9db22ec69fd53a25c4a5e8bf498 (patch) | |
tree | ba7589bf0aa7721d37602ac8cc37ff9e4801116f /html/flexagon/index.html | |
parent | 033f1f1196f741e3e943ad51bfc457226649183e (diff) | |
download | tour-master.tar.gz |
Diffstat (limited to 'html/flexagon/index.html')
-rw-r--r-- | html/flexagon/index.html | 26 |
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> |