File size: 693 Bytes
338c0ed
c8cebd0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338c0ed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Falcon Exterior Replica</title>
    <style>
      html, body { margin: 0; padding: 0; height: 100%; background: #05070c; overflow: hidden; }
      #app { width: 100vw; height: 100vh; }
      #hud {
        position: fixed; left: 10px; top: 10px; color: #9fb4c8;
        font: 12px/1.5 monospace; pointer-events: none; white-space: pre;
        text-shadow: 0 1px 2px #000;
      }
    </style>
  </head>
  <body>
    <div id="app"></div>
    <div id="hud"></div>
    <script type="module" src="/src/main.js"></script>
  </body>
</html>