-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 778 Bytes
/
Copy pathindex.html
File metadata and controls
33 lines (32 loc) · 778 Bytes
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
<!DOCTYPE html>
<html class="w-screen h-screen dark dark:(text-gray-100 bg-gray-700)" lang="en">
<head>
<meta charset="utf-8" />
<title>Solid App</title>
<link
crossorigin="anonymous"
rel="stylesheet"
href="/src/styles/global.css" />
<noscript>
<link
crossorigin="anonymous"
rel="stylesheet"
href="/src/styles/noscript.css" />
</noscript>
</head>
<body class="w-screen h-screen">
<div class="w-screen h-screen overflow-visible contain" id="root">
<noscript>
<h1>You need to enable JavaScript to run this app.</h1>
</noscript>
</div>
<script
crossorigin="anonymous"
src="/src/index.tsx"
type="module"></script>
<script
crossorigin="anonymous"
src="/src/nomodule.ts"
nomodule=""></script>
</body>
</html>