-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
49 lines (46 loc) · 1.4 KB
/
index.html
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
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" type="image/ico" href="favicon.ico" />
<meta
name="description"
itemprop="description"
content="A 3D simulation of the Earth orbiting the Sun"
/>
<meta itemprop="name" content="3D Orbit Simulation" />
<meta itemprop="image" content="thumbnail.png" />
<!-- Facebook Open Graph -->
<meta property="og:title" content="3D Orbit Simulation" />
<meta
property="og:description"
content="A 3D simulation of the Earth orbiting the Sun"
/>
<meta
property="og:url"
content="https://chidiwilliams.github.io/3d-orbit-simulation/"
/>
<meta property="og:type" content="website" />
<meta property="og:image" content="thumbnail.png" />
<meta property="og:site_name" content="3D Orbit Simulation" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<link
rel="canonical"
href="https://chidiwilliams.github.io/3d-orbit-simulation/"
/>
<title>3D Orbit Simulation</title>
<style>
body {
margin: 0;
}
canvas {
display: block;
}
</style>
</head>
<body></body>
<script src="./index.js" type="module"></script>
</html>