diff options
| author | Raymaekers Luca <luca@spacehb.net> | 2025-10-01 16:53:49 +0200 |
|---|---|---|
| committer | Raymaekers Luca <luca@spacehb.net> | 2025-10-01 16:53:49 +0200 |
| commit | aadff4d1cf17cc23f6f38ab0da51baabfeb9f9d1 (patch) | |
| tree | f2755f80c5067ae97b667b4c5607d4502805d078 /code/index.html | |
| parent | 4ea5261f32ec8acd4cdad7c364f57e6ebc86866a (diff) | |
checkpoint
Diffstat (limited to 'code/index.html')
| -rw-r--r-- | code/index.html | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/code/index.html b/code/index.html new file mode 100644 index 0000000..f50730c --- /dev/null +++ b/code/index.html @@ -0,0 +1,69 @@ +<!DOCTYPE html> +<html> + <head> + <style> +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} +</style> + +<style> + canvas#graphics-canvas { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + + } +</style> + <script type="module" src="./platform.js"></script> + </head> + <body> + <canvas id="graphics-canvas"></canvas> + </body> +</html> |
