diff options
Diffstat (limited to 'html/cards/index.html')
-rw-r--r-- | html/cards/index.html | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/html/cards/index.html b/html/cards/index.html index 37bb088..8037e53 100644 --- a/html/cards/index.html +++ b/html/cards/index.html @@ -4,11 +4,23 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Cards</title> - <link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet"> <style> + + @font-face { + font-family: 'pokemon-font'; + src: url('./pokemon-font/fonts/pokemon-font.ttf') format('ttf'); /* IE9 Compat Modes */ + src: url('./pokemon-font/fonts/pokemon-font.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./pokemon-font/fonts/pokemon-font.woff2') format('woff2'), /* Super Modern Browsers */ + url('./pokemon-font/fonts/pokemon-font.woff') format('woff'), /* Pretty Modern Browsers */ + url('./pokemon-font/fonts/pokemon-font.ttf') format('truetype') /* Safari, Android, iOS */ + } + body { margin: 0; padding: 0; + font-smooth: never; + -webkit-font-smoothing: none; + font-family: "pokemon-font", monospace; } canvas { |