-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 943 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/styles.css" />
<title>Adventure</title>
</head>
<body>
<div class="container">
<h1 class="glow">Adventure!</h1>
<div class="interface-container">
<div class="text-container">
<!-- output goes here at #text -->
<!-- class example is for the typing jquery -->
<div class="text-output glow example toki" id="text"></div>
</div>
<div class="button-container">
<div id="option-buttons" class="btn-grid"></div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="module" src="js/GameStrings.js"></script>
<script type="module" src="js/game.js"></script>
</body>
</html>