example-spa-elm-app/index.html

17 lines
308 B
HTML
Raw Normal View History

2024-12-29 02:09:53 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Elm UI Website</title>
</head>
<body>
<div id="elm"></div>
<script src="elm.min.js"></script>
<script>
var app = Elm.Main.init({
node: document.getElementById('elm')
});
</script>
</body>
</html>