diff options
Diffstat (limited to 'html/cards/index.html')
-rw-r--r-- | html/cards/index.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/html/cards/index.html b/html/cards/index.html index 2a4b69d..6c6c25e 100644 --- a/html/cards/index.html +++ b/html/cards/index.html @@ -8,11 +8,11 @@ <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 */ + 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 { @@ -31,6 +31,6 @@ </head> <body> <canvas id="cards"></canvas> - <script src="/cards.js"></script> + <script src="./cards.js"></script> </body> -</html> \ No newline at end of file +</html> |