-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.1 KB
/
Copy pathindex.html
File metadata and controls
29 lines (29 loc) · 1.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<!--
The app is dark and only dark. The stylesheet says so too, but not until
it has loaded and been parsed — and a browser decides whether to force
its own dark treatment on a page, and what to paint before the first
stylesheet arrives, from this.
-->
<meta name="color-scheme" content="dark" />
<meta name="theme-color" content="#1c1b19" />
<!-- Inline, so there is no favicon request to 404 on. -->
<link
rel="icon"
href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' rx='6' fill='%231c1b19'/%3E%3Ctext x='16' y='24' font-size='22' text-anchor='middle' fill='%237fa650'%3E%E2%99%9E%3C/text%3E%3C/svg%3E"
/>
<meta name="mobile-web-app-capable" content="yes" />
<title>Chess</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>