mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
19 lines
393 B
HTML
19 lines
393 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="elm-app-is-loaded-here" />
|
|
<script src="app.js"></script>
|
|
<script>
|
|
var app = Elm.Main.init({
|
|
node: document.getElementById("elm-app-is-loaded-here"),
|
|
flags: {}
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |