-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path404.html
54 lines (40 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 on capygames</title>
<style>
* {
box-sizing: border-box;
}
body {
font: 110%/1.5 system-ui, sans-serif;
background: #131417;
color: white;
height: 100vh;
margin: 0;
display: grid;
place-items: center;
padding: 2rem;
}
main {
max-width: 350px;
}
a {
color: #56BBF9;
}
</style>
</head>
<body>
<main>
<h1 data-test-id="text-404">404</h1>
<p>I'm afraid you've found a page that doesn't exist on Capy games😢. That can happen when you follow a link to something that has since been deleted. Or the link was incorrect to begin with.</p>
<p>Sorry about that.</p>
<ul>
<li>
<a href="/">Homepage</a>
</main>
</body>
</html>