-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
64 lines (53 loc) · 2.86 KB
/
Copy path404.html
File metadata and controls
64 lines (53 loc) · 2.86 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
<!DOCTYPE html>
<html>
<head>
<title>Borken url uwu</title>
<link rel="icon" type="image/svg" href="/assets/images/svg/icon-blue.svg">
<!-- CSS -->
<link rel="stylesheet" href="/assets/css/core.css">
<link rel="stylesheet" href="/assets/css/header-sidebar.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap">
<link rel="preconnect" href="https://fonts.gstatic.com">
<style>
#card {
width: 600px;
margin: 0 auto;
margin-top: 150px;
padding: 2em;
background-color: #27292a;
border-radius: 5px;
box-shadow: 2px 3px 7px 2px rgba(0, 0, 0, 0.2);
border: 1px solid #2d2f30;
}
</style>
<!-- JS -->
<script src="/assets/javascript/header-sidebar.js"></script>
<!-- META -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Oh no! This is a broken link! I recommend you tell the person who gave you this link! :D"> <!-- Description -->
<meta name="theme-color" content="#00f0f0">
<meta property="og:url" content="https://www.plotzes.ml/404"> <!-- URL to page -->
<meta property="og:type" content="website">
<meta property="og:title" content="Borken url uwu"> <!-- Title of the page-->
<meta property="og:site_name" content="Plotzes">
<meta property="og:description" content="Oh no! This is a broken link! I recommend you tell the person who gave you this link! :D"> <!-- Description -->
<meta property="og:image" content="https://www.plotzes.ml/assets/images/png/banner.png"> <!-- Image to use -->
<meta property="og:image:type" content="/assets/image/png">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="plotzes.ml">
<meta property="twitter:url" content="https://www.plotzes.ml/404"> <!-- URL to page -->
<meta name="twitter:title" content="Borken url uwu"> <!-- Title of the page -->
<meta name="twitter:description" content="Oh no! This is a broken link! I recommend you tell the person who gave you this link! :D"> <!-- Description -->
<meta name="twitter:image" content="https://www.plotzes.ml/assets/images/png/banner.png"> <!-- Image to use -->
</head>
<body>
<div id="root">
<div id="card">
<h1>404 - NOT FOUND</h1>
<h3>(。ŏ﹏ŏ)</h3>
<p>Wow! H-how did you end up here...<br>If you clicked on a link then you should probably tell someone that it's broken :P</p>
<a href="/">Click here to return to the homepage!</a>
</div>
</div>
</body>
</html>