You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1011 B
26 lines
1011 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta content="text/html; charset=utf-8" equiv="Content-Type" charset="utf-8">
|
|
<meta content="width=device-width, initial-scale=0.86, minimum-scale=0.86 shrink-to-fit=no" name="viewport">
|
|
<title>COVID-19 statistics for individuals</title>
|
|
<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=Inconsolata&family=Noto+Serif&family=Roboto&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/style.css">
|
|
<script src="elm.js"></script>
|
|
<script src="elm-local-storage-ports.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="elm"></div>
|
|
<script type="text/javascript">
|
|
const localStoragePorts = new ElmLocalStoragePorts();
|
|
var app = Elm.Main.init({
|
|
node: document.getElementById("elm"),
|
|
flags: []});
|
|
localStoragePorts.subscribe(app);
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|