summaryrefslogtreecommitdiffstats
path: root/index.html
blob: cc130625ceec46b1ae8d201a98c9c6652e17181e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
  <head>
    <title>wasm test</title>
  </head>

  <body>
    <h1>wasm test</h1>
    <input type='number' id='number-input1' placeholder='5'>
    <input type='number' id='number-input2' placeholder='3'>
    <button onclick='calculate()'>calc</button>
    <p>
      result: <span id='result'></span>
    </p>

    <button onclick='testalert()'>alert</button>

    <script src='./main.mjs' type='module'></script>
  </body>
</html>