concept-collection / stan-web-ide
stan-web-ide / index.html
24 lines · 589 BBlameHistoryRaw
1<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="utf-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1" />
6 <link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect width='16' height='16' rx='3' fill='%230078d4'/%3E%3C/svg%3E" />
7 <title>stan-web-ide</title>
8 <style>
9 html,
10 body {
11 height: 100%;
12 margin: 0;
13 padding: 0;
14 }
15 #app {
16 height: 100%;
17 }
18 </style>
19 </head>
20 <body>
21 <div id="app"></div>
22 <script type="module" src="/src/main.ts"></script>
23 </body>
24</html>