<!DOCTYPE html> <html> <head> <title>Simplex Noise Test</title> <style> body, html { width: 100%; height: 100%; padding: 0; margin: 0; overflow: hidden; background: black; } canvas { display: block; width: 1024px; height: 768px; margin: calc(50vh - 768px / 2) auto 0; border: 2px solid #333; } </style> </head> <body> <canvas></canvas> <script type="module" src="/src/simplex-demo.ts"></script> </body> </html>