diff options
author | Florrie <towerofnix@gmail.com> | 2018-08-09 17:35:51 -0300 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2018-08-09 17:35:51 -0300 |
commit | 4208db86ed25658475afcf2c2ddae2c8ad0f69b6 (patch) | |
tree | 15f09494b7451212695ae818cb8e7d22ba3ddcb5 /index.html |
Initial commit
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..61618d9 --- /dev/null +++ b/index.html @@ -0,0 +1,20 @@ +<title>Game experiment</title> +<meta charset="utf-8"> +<style> +@font-face { + font-family: 'pixel-font'; + src: url('teeny-tiny-pixls.otf') format('opentype'); +} + +body { + font-family: 'pixel-font'; + font-size: 5px; +} + +canvas { + image-rendering: optimizeSpeed; +} +</style> +Nice. +<canvas id="canvas"></canvas> +<script src="index.js"></script> |