-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy path404.html
30 lines (29 loc) · 785 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SUI2</title>
<meta charset="utf-8">
<meta name="description" content="a startpage for your server and / or new tab page">
<meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
<link rel="shortcut icon" href="/icon-512.png" type="image/png">
<style>
.container {
display: flex;
flex-direction: column;
font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Roboto, sans-serif;
margin-top: 20vh;
}
.container * {
align-self: center;
}
</style>
</head>
<body>
<div class="container">
<h2>404 Not Found</h2>
<p>
You are coming to the wrong place.
</p>
</div>
</body>
</html>