« 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: 61618d9061d5e6e9b39912dbeeda7abb3d58e928 (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"></canvas>
<script src="index.js"></script>