-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.33 KB
/
index.html
File metadata and controls
42 lines (38 loc) · 1.33 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/jpeg" href="/icon.jpg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Space Simulator</title>
<link rel="canonical" href="https://space-simulator.utcode.net/" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="An interactive 3D space simulator" />
<meta property="og:title" content="Space Simulator" />
<meta
property="og:description"
content="An interactive 3D space simulator"
/>
<meta property="og:url" content="https://space-simulator.utcode.net" />
<meta
property="og:image"
content="https://space-simulator.utcode.net/og-image.png"
/>
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Space Simulator" />
<meta
name="twitter:description"
content="An interactive 3D space simulator"
/>
<meta
name="twitter:image"
content="https://space-simulator.utcode.net/og-image.png"
/>
<meta name="twitter:url" content="https://space-simulator.utcode.net" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>