-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·34 lines (34 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, viewport-fit=cover">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Colah the Koala: AI children's book</title>
<link rel="apple-touch-icon" href="./img/icon.png"/>
<link rel="icon" type="image" href="./img/icon.png" />
<link rel="shortcut icon" href="./img/icon.png" />
<meta property="og:image" content="https://ai-book-colah.tarwin.art/img/og.webp"/>
<link rel="manifest" href="/manifest.json" />
<script src="./book.js"></script>
<link rel="stylesheet" href="./book.css" />
</head>
<body>
<div id="book">
</div>
<div id="intro">
<div class="left"><img src="./img/tap.png" /></div>
<div class="center"><img src="./img/tap.png" /></div>
<div class="right"><img src="./img/tap.png" /></div>
</div>
<div id="rotate">
<div><img src="./img/rotate.gif" /></div>
</div>
<div id="pointers">
<div class="left"></div>
<div class="center"></div>
<div class="right"></div>
</div>
<script src="./book-runner.js"></script>
</body>
</html>