-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (40 loc) · 1.13 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta
property="og:site_name"
content="Collision - Event-driven collision simulator"
/>
<meta
property="og:title"
content="Collision - Event-driven collision simulator"
/>
<meta
property="og:url"
content="https://naokihori.github.io/Collision/index.html"
/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://naokihori.github.io/Collision/thumbnail.jpg"
/>
<link rel="stylesheet" href="./style.css" />
<title>Event-driven Collision Simulator</title>
<script type="module" src="/script/main.ts"></script>
</head>
<body>
<div id="canvas-container">
<div id="canvas-wrapper">
<canvas id="my-canvas" width="0" height="0">
This browser does not support canvas element.
</canvas>
</div>
</div>
<div id="footer">
<a href="https://github.com/NaokiHori/Collision"> Collision </a>
© 2024 Naoki Hori
</div>
</body>
</html>