-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.28 KB
/
Copy pathindex.html
File metadata and controls
35 lines (32 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mechanical Counter 3D</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<meta property="og:title" content="Mechanical Counter 3D"/>
<meta property="og:image" content="https://h5vx.github.io/MechanicalCounter3D/counter.png"/>
<meta property="og:image:width" content="512"/>
<meta property="og:image:height" content="512"/>
<meta property="og:description" content="3D visualisation of mechanical counter that can be used as an example of how positional numeral systems works"/>
<style>
body { margin: 0; }
#info {
position: absolute;
top: 10px;
left: 10px;
width: 100%;
z-index: 100;
display:block;
font-size: 24px;
font-family: monospace;
}
</style>
</head>
<body>
<script type="module" src="/main.js"></script>
</body>
</html>