-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 1.84 KB
/
Copy pathindex.html
File metadata and controls
46 lines (45 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="theme-color" content="#0b1020" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Space+Grotesk:wght@300..700&display=swap"
rel="stylesheet"
crossorigin
/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" crossorigin />
<meta name="description" content="INTAB: A high-performance, WebAssembly-powered, fully in-browser IDE. Developed by Unit 4 Bytes." />
<meta name="keywords" content="intab, in-browser ide, webassembly, web terminal, developer tools" />
<meta property="og:title" content="INTAB | v1.0.0" />
<meta property="og:description" content="Fully isolated in-browser development environment powered by WebAssembly." />
<style>
html,
body,
#root {
height: 100%;
}
body {
margin: 0;
background: #000;
color: #fff;
}
</style>
<!-- Normalise 127.0.0.1 → localhost so OPFS always uses the same origin bucket -->
<script>
if (location.hostname === '127.0.0.1') {
location.replace(location.href.replace('127.0.0.1', 'localhost'))
}
</script>
<title>INTAB | Round 2</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>