forked from Felhzverse/e
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
65 lines (64 loc) · 1.68 KB
/
404.html
File metadata and controls
65 lines (64 loc) · 1.68 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<title>Whoops! :(</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-136979749-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-136979749-1');
</script>
</head>
<body>
<main>
<center>
<style>
body{
color: #f7f6f2;
text-align: center;
text-align: justify;
font-size: 5;
background-color: #cdd77a;
font-family: 'Lato', sans-serif;
}
p {
text-indent: 50px;
font-family: 'Lato', sans-serif;
color: #f7f6f2;
text-align: center;
text-align: justify;
font-size: 5;
}
button{
background-color:#4c403d;
text-align: center;
font-family: 'Lato', sans-serif;
color: #f7f6f2;
border-radius:15%;
}
button.fof {
padding: 15px 32px;
}
</style>
<script type="text/javascript">
function Prev(){
window.history.back();
}
function Home(){
window.location="./index.html"
}</script>
<img src="https://cdn.discordapp.com/attachments/496051040475676683/599331408950984831/fpuck.png">
<section style="">
<p>Oh <i>Puck.</i> Looks like the file you were looking for can't be found here. We're sorry if this an issue with the site code, but if not, here are some places you can go to retrace your steps:</p>
<br>
<button class="fof" onclick="Prev()">Go back to the previous page</button>
<button class="fof" onclick="Home()">Go back to the home page</button>
</section>
</center>
</main>
</body>
</html>