mirror of
https://github.com/correl/elm-exercise.git
synced 2024-11-23 19:19:51 +00:00
18 lines
479 B
HTML
18 lines
479 B
HTML
<html>
|
|
<head>
|
|
<title>Elm Exercise</title>
|
|
<link rel="stylesheet" href="css/style.css" />
|
|
<script type="text/javascript" src="app.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Online Users</h1>
|
|
|
|
<!-- Container for our Elm application -->
|
|
<div id="elm-app">
|
|
</div>
|
|
</body>
|
|
<script type="text/javascript">
|
|
var div = document.getElementById('elm-app');
|
|
var app = Elm.embed(Elm.App, div);
|
|
</script>
|
|
</html>
|