23 lines
843 B
HTML
23 lines
843 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<title>Elm app by clp</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1>Elm app by clp</h1>
|
|
</header>
|
|
<main>
|
|
<p>This is an app which will either load succesfully, and you'll wonder whether you saw this text at all, or fail ignominiously, showing you only this text.</p>
|
|
<p>On balance of probabilities: I'm sorry I couldn't be bothered to make this work for you.</p>
|
|
</main>
|
|
<footer>Made by <a href="https://somethingorotherwhatever.com">clp</a></footer>
|
|
|
|
<script src="app.js"></script>
|
|
<script src="load-app.js" type="module"></script>
|
|
</body>
|
|
</html>
|