client/src/app.html (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <link rel="icon" href="%sveltekit.assets%/favicon.png" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <!-- <link rel="stylesheet" href="./app.css" /> --> <link rel="preconnect" href="https://fonts.googleapis.com" /> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> <link href="https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Geist:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet" /> <style> .geist-font { font-family: 'Geist', sans-serif !important; } .geist-mono-font { font-family: 'Geist Mono', monospace !important; } </style> %sveltekit.head% </head> <body data-sveltekit-preload-data="hover" class="geist-font"> <div style="display: contents">%sveltekit.body%</div> </body> </html> |