-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.24 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Your app title and who made it -->
<title>Harry Potter Adventure</title>
<meta name="description" content="Harry Potter Adventure">
<meta name="author" content="Mr Fox">
<!-- This is the font that will be used in your app -->
<!-- Choose a different one from https://fonts.google.com -->
<link href="https://fonts.googleapis.com/css?family=EB+Garamond|Princess+Sofia|Lato&display=swap" rel="stylesheet">
<!-- This imports the base styles -->
<link rel="stylesheet" href="css/index.css">
<!-- This imports your custom styles -->
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<!-- Your final content will be rendered here -->
<div id="app">
<!-- This will be updated in the story to show the current stage -->
<h1 id="title"></h1>
<!-- This will contain the current screen content -->
<div id="screen"></div>
<div id="author"></div>
</div>
<!-- Index contains the core logic -->
<script src="js/index.js"></script>
<!-- Story contains the customisation of the storyline -->
<script src="js/story.js"></script>
<!-- Start simply separates instantiation from story.js -->
<script src="js/start.js"></script>
</body>
</html>