-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
104 lines (89 loc) · 3.3 KB
/
404.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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en-us" class="has-navbar-fixed-top"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1,
viewport-fit=cover">
<title>404 Page not found |
Scawwy Howwow Theatre</title>
<link rel="shortcut icon" href="/profile.jpg" />
<meta name="description" content="
">
<link rel="canonical" href="https://scawwy-howwow.netlify.app/404.html" />
<link rel="stylesheet" href="https://scawwy-howwow.netlify.app/sass/main.min.1052b9fc3bc6c9286a092a1bb0508d8976a9f79e93b825fe1f42eea550552213.css" media="screen">
<script src="https://kit.fontawesome.com/eaf29463d8.js" crossorigin="anonymous"></script>
</head>
<body>
<main>
<section class="section"><header>
<nav class="navbar is-fixed-top is-black is-spaced" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item spooky" href="/" aria-label="home"></a>
<a role="button" class="navbar-burger burger" aria-label="menu"
aria-expanded="false" data-target="nav-bar" id="burger" tabindex=0
href="javascript:void(0);" onClick="toggle()">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="nav-bar" class="navbar-menu">
<div class="navbar-start">
<a href="/" class="navbar-item navbar-item-main">
<span class="icon navbar-icon">
<i class='fas fa-home'></i>
</span>
Home
</a>
<a href="/about" class="navbar-item navbar-item-main">
<span class="icon navbar-icon">
<i class='fas fa-ghost'></i>
</span>
About
</a>
<a href="/projects" class="navbar-item navbar-item-main">
<span class="icon navbar-icon">
<i class='fas fa-book-dead'></i>
</span>
Projects
</a>
</div>
<div class="navbar-end">
<a href="https://facebook.com/scawwyhowwowtheatre/" class="navbar-item is-hidden-touch navbar-item-main"
title="Facebook" aria-label="Facebook">
<span class="icon">
<i class='fab fa-facebook'></i>
</span>
</a>
<a href="https://instagram.com/scawwyhowwowtheatre/" class="navbar-item is-hidden-touch navbar-item-main"
title="Instagram" aria-label="Instagram">
<span class="icon">
<i class='fab fa-instagram'></i>
</span>
</a>
<a href="https://twitter.com/unredpod" class="navbar-item is-hidden-touch navbar-item-main"
title="Twitter" aria-label="Twitter">
<span class="icon">
<i class='fab fa-twitter'></i>
</span>
</a>
</div>
</div>
</nav>
</header>
<script>
function toggle() {
document.getElementById("nav-bar").classList.toggle('is-active');
document.getElementById("burger").classList.toggle('is-active');
}
</script>
<div class="container">
<div class="content is-large">
<h1 class="title">404 Error</h1>
<p>That page doesn't exist.</p>
<p><a href="/">Want to go back home?</a></p>
</div>
</div>
</section>
</main>
</body>
</html>