-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguide.html
More file actions
50 lines (48 loc) · 1.69 KB
/
guide.html
File metadata and controls
50 lines (48 loc) · 1.69 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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="app.js" defer></script>
<title>The Monogatari Series</title>
<link rel="shortcut icon" type="image/png" href="resources/logo.png">
<link rel="stylesheet" href="https://use.typekit.net/ohp0qym.css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<div class="backgroundContainer">
<video src="resources/landscape.mp4" id="background" muted autoplay loop></video>
</div>
<script>
$(function () {
$("#navigation-bar").load("navigation_bar.html");
$("#footer").load("footer.html");
});
</script>
<div id="navigation-bar"></div>
<div id="faq-header">
<div>
<h1>Guide</h1>
</div>
</div>
<div class="mainContent" id="faq-body">
<div class="container">
<div id="center">
<answer>
A message from Charles:<br><br>
I asked Raymond "what did you have planned for the guide section of this website?" He said "I don't know, I
didn't have a plan."<br><br>
So... uh... here's Megalovania from Undertale:
</answer>
</div>
<iframe width="560" height="315" src="https://www.youtube.com/embed/wDgQdr8ZkTw?autoplay=1"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
<div id="footer"></div>
</body>
</html>