-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (39 loc) · 1.22 KB
/
index.html
File metadata and controls
50 lines (39 loc) · 1.22 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>gamebook.js - Fire on the Water</title>
<!-- Won't work with other version of jQuery.. -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<!-- <script src="jquery-1.8.2.js"></script> -->
<script src="jquery.terminal-0.4.22.js"></script>
<script src="PorterStemmer1980.min.js"></script>
<script src="gamebook.js"></script>
<script src="utils.js"></script>
<script src="fotw.js"></script>
<link rel="stylesheet" type="text/css" href="jquery.terminal.css">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=PT+Mono|Merienda|Inconsolata|Droid+Sans+Mono&subset=latin,latin-ext" />
<style>
.terminal {
font-family: droid sans mono, monospace;
font-weight: bold;
font-size: 15px;
color: Lime;
overflow: auto;
}
.terminal .terminal-output div div, .terminal .prompt {
line-height: 14px;
}
.word-completion {
color: #0f60ff
}
</style>
<script>
gamebook.special_sections = fotw_special_sections;
gamebook.special_choices = fotw_special_choices;
gamebook.special_combats = fotw_special_combats;
</script>
</head>
<body>
</body>
</html>