index.html

 1<!doctype html>
 2<html lang="en">
 3    <head>
 4        <meta charset="utf-8" />
 5        <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=0" />
 6        <title>GPUI Web: hello_web</title>
 7        <link data-trunk rel="rust" data-bin="hello_web" data-bindgen-target="web" data-keep-debug data-wasm-opt="0" />
 8        <style>
 9            * {
10                margin: 0;
11                padding: 0;
12                box-sizing: border-box;
13            }
14            html,
15            body {
16                margin: 0;
17                height: 100%;
18            }
19            canvas {
20                display: block;
21                width: 100%;
22                height: 100%;
23                touch-action: none;
24                outline: none;
25                -webkit-user-select: none;
26                user-select: none;
27            }
28        </style>
29    </head>
30    <body></body>
31</html>