diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2024-01-14 17:53:28 +0100 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2024-01-14 17:53:28 +0100 |
commit | 0375faa9670737191d0c276f3b5daf83a6cfc8e8 (patch) | |
tree | 374735bcd68f92d4f144e67e5fe89fcce80d6931 /index.html | |
parent | 79c1c693130369e115c316c2f149ed5a1c2cdc03 (diff) |
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..9552fb5 --- /dev/null +++ b/index.html @@ -0,0 +1,20 @@ +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <style> + body { + background: #526864; + } + canvas { + width: 100%; + height: 100%; + background-color: white; + } + </style> + <title>gems</title> + </head> + <script type="module"> + import init from './gems.js' + init() + </script> +</html> |