« get me outta code hell

index.html - csb-game - Pixelly spin-off of the Command Synergy Battle system used in Final Fantasy XIII
summary refs log tree commit diff
path: root/index.html
blob: 5c636b0edc2ea0ebd5e3640562d97d50fec015a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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" tabindex="1"></canvas>
<script src="index.js"></script>