-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path404.html
More file actions
32 lines (31 loc) · 736 Bytes
/
404.html
File metadata and controls
32 lines (31 loc) · 736 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weblit Backend API</title>
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Cabin&family=Roboto+Condensed:wght@400;700&display=swap');
body {
background-color: black;
color: white;
font-family: 'Roboto Condensed', Sans-Serif;;
}
main {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
h2 {
font-size: 6em;
}
</style>
<body>
<main>
<h2>NOT FOUND</h2>
<p>The requested route does not exist</p>
</main>
</body>
</html>