about summary refs log tree commit diff stats
path: root/elm/cost-of-meeting/index.html
blob: fba1a395f0a33d0c3cf469dbbbcace26279707d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Meeting Cost Calculator</title>
    <link rel="stylesheet" href="src/styles.css">
  </head>
  <body>
    <div id="elm"></div>
    <script src="elm.js"></script>
    <script>
      var app = Elm.Main.init({
        node: document.getElementById('elm')
      });
    </script>
  </body>
</html>