-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 1015 Bytes
/
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
<!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 class="header">
<a href="https://github.com/NaokiHori/Collision" target="_blank">
Event-driven Collision Simulator
</a>
</div>
<canvas id="my-canvas">
This browser does not support canvas element.
</canvas>
<div class="footer">
Copyright 2024, Naoki Hori.
</div>
</body>
</html>