-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (21 loc) · 1.19 KB
/
index.html
File metadata and controls
26 lines (21 loc) · 1.19 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
<link rel="icon" href="./favicon.svg">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>Gravity Simulator | Dirck van den Ende</title>
<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=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap" rel="stylesheet">
<meta property="og:title" content="Gravity Simulator | Dirck van den Ende">
<meta property="og:type" content="website">
<meta property="og:url" content="https://dirck.dev/gravity-sim/">
<meta property="og:description" content="An interactive gravity simulator, mainly intended for educational purposes. Explore the orbits of the planets in the solar system, the moons of Pluto, and much more! You can even create your own scenarios by adding and modifying objects!">
<meta property="og:image" content="https://dirck.dev/gravity-sim/preview-image.png">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/pages/main.ts"></script>
</body>
</html>