-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (36 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Reactive Bisimilarity Game</title>
<link rel="icon" type="image/x-icon" href="/assets/bisim.png">
<meta charset="utf-8" />
<style>
/* This stuff is from a resize guide */
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
/* @font-face {
font-family: Sukuriburu;
src: url("/assets/Fonts/SukuriburuBySoultyRagevin-Regular.ttf");
font-weight: normal;
}
@font-face {
font-family: Monogram;
src: url("/assets/Fonts/monogram/ttf/monogram.ttf");
font-weight: normal;
} */
/* end resize guide */
</style>
<script type="module" src="/src/index.ts"></script>
</head>
<body>
<!-- <div style="font-family:Sukuriburu; position:absolute; left:-1000px; visibility:hidden;">.</div>
<div style="font-family:Monogram; position:absolute; left:-1000px; visibility:hidden;">.</div> -->
<div id="game"></div>
</body>
</html>