29c367987f
Conform to https://www.w3.org/International/questions/qa-html-encoding-declarations Add mobile-friendly initial scaling - copy value found at svelte.dev, developer.mozilla.org etc.
18 lines
371 B
HTML
18 lines
371 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta name='viewport' content='width=device-width,initial-scale=1'>
|
|
|
|
<title>Svelte app</title>
|
|
|
|
<link rel='icon' type='image/png' href='/favicon.png'>
|
|
<link rel='stylesheet' href='/global.css'>
|
|
<link rel='stylesheet' href='/bundle.css'>
|
|
|
|
<script defer src='/bundle.js'></script>
|
|
</head>
|
|
|
|
<body>
|
|
</body>
|
|
</html>
|