diff options
Diffstat (limited to 'html/cards/index.html')
-rw-r--r-- | html/cards/index.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/html/cards/index.html b/html/cards/index.html new file mode 100644 index 0000000..6c6c25e --- /dev/null +++ b/html/cards/index.html @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="description" content="One should always play fairly when one has the winning cards - Oscar Wilde"> + <title>🃏 cards 🃏</title> + <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; + font-size: 16px; + } + + canvas { + display: block; + } + </style> +</head> +<body> + <canvas id="cards"></canvas> + <script src="./cards.js"></script> +</body> +</html> |