6a0e854bd0
UTF-8 needs to have a dash, see e.g. the example [here](https://www.w3.org/TR/html50/document-metadata.html#character-encoding-declaration). The current value of `utf8` does not work with Internet Explorer 11. I guess most other browsers will default to UTF-8 anyway when they encounter an unknown charset value.
18 lines
355 B
HTML
18 lines
355 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta name='viewport' content='width=device-width'>
|
|
|
|
<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>
|