-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (29 loc) · 1021 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
34
35
36
37
38
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>first story</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="outerContainer">
<h3 class="written-in-ink"><a href="https://www.inklestudios.com/ink">WRITTEN IN INK</a></h3>
<div id="controls" class="buttons">
<a id="rewind" title="Restart story from beginning">restart</a>
<a id="save" title="Save progress">save</a>
<a id="reload" title="Reload from save point">load</a>
<a id="theme-switch" title="Switch theme">theme</a>
</div>
<div id="story" class="container">
<div class="header">
<h1>first story</h1>
<h2 class="byline"></h2>
</div>
</div>
</div>
<script src="ink.js"></script>
<script src="story0001.js"></script>
<script src="main.js"></script>
</body>
</html>