-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (43 loc) · 1.37 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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui, width=device-width"
/>
<link rel="icon" href="favicon.png" type="image/png">
<title>Story Adventure Viewer</title>
<link href="bootstrap.min.css" rel="stylesheet" />
<script src="bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="bootstrap-icons-font/bootstrap-icons.min.css">
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div id="background">
<img id="background_image" />
</div>
<div class="container" id="menu_container">
<div class="row">
<div class="col">
<button type="button" id="load_button" class="btn btn-success">
Load a Story Adventure
</button>
</div>
</div>
</div>
<div class="text-center d-none" id="spinner">
<div class="spinner-border text-warning" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<div class="container" id="story_container">
<div class="row" id="story">
<div class="col" id="story_text">Lorem Ipsum</div>
</div>
<div class="row" id="choices_row">
</div>
</div>
<script src="code.js" type="module"></script>
</body>
</html>