summaryrefslogtreecommitdiffstats
path: root/src/index.html
blob: 270dabd54a8a416c0fa61023db21a96ed584282b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html lang="en">

<head>
    <title>Web development with Elm</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/styles/default.min.css">
    <link rel="icon" href="../assets/elm-icon.png">
    <script src="../highlight.min.js"></script>
    <script type="module" src="./index.js"></script>
    <style>
        pre {
            margin: 0 -2%;
        }
    </style>
</head>

<body>
    <div id="root"></div>
</body>

</html>