-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
41 lines (35 loc) · 931 Bytes
/
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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8" />
<!-- #region Page metadata -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- #endregion -->
<title>Page not found</title> <!-- Page title -->
<!-- #region Resource links -->
<link href="https://SweetBoy13735.GitHub.io/res/css/style.css" rel="stylesheet" />
<!-- #endregion -->
<!-- #region Page-specific styling -->
<style>
html {
text-align: center;
}
body {
height: 100vh;
width: 100vw;
}
main {
box-shadow: inset 0 0 .5rem .5rem var(--night-red);
padding: .75rem;
}
</style>
<!-- #endregion -->
</head>
<body class="flex">
<!-- Main content -->
<main class="container">
<h1>Page not found</h1>
<p>Sorry, but the page you're trying to view doesn't exist. <a href="https://SweetBoy13735.GitHub.io">Back to home page</a></p>
</main>
</body>
</html>