Embed Elm ke HTML

<!DOCTYPE html>
<html>
    <head>
        <title>Hello World</title>
    </head>
    <body>
        <div id='app'></div>
        <script src="elm.js"></script>
        <script>
            Elm.Main.embed(document.getElementById('app'))
        </script>
    </body>
</html>

<!-- You can also use a <body> tag but some Chrome extensions may mess with it. 
Best to use <div>. -->
Concerned Civet