1<html>
 2    <head>
 3        <meta charset="utf-8"/>
 4        <script src="wasm_exec.js"></script>
 5        <script>
 6            const go = new Go();
 7            WebAssembly.instantiateStreaming(fetch("main.wasm"), go.importObject).then((result) => {
 8                go.run(result.instance);
 9            });
10        </script>
11    </head>
12    <body>
13        <div class="donut-main-window"></div>
14    </body>
15</html>