-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
93 lines (80 loc) · 2.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" sizes="192x192" href="icon/icon-192.png" />
<link rel="shortcut icon" type="image/x-icon" href="icon/favicon.ico" />
<title>404 - Page Not Found</title>
<meta name="description" content="Christmas Greetings 🎅🎄 - Data or URL Not Found.">
<link rel="preconnect" href="https://cdnjs.cloudflare.com">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.4/css/bulma.min.css" integrity="sha512-HqxHUkJM0SYcbvxUw5P60SzdOTy/QVwA1JJrvaXJv4q7lmbDZCmZaqz01UPOaQveoxfYRv1tHozWGPMcuTBuvQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
<style>
body {
font-family: "Open Sans", sans-serif;
font-weight: 600;
background-color: #f0f0f0;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
.container {
max-width: 600px;
padding: 20px;
box-sizing: border-box;
}
h1 {
font-family: "Open Sans", sans-serif;
font-weight: 600;
font-size: 3rem;
margin-bottom: 20px;
color: #555;
}
p {
font-family: "Open Sans", sans-serif;
font-weight: 600;
font-size: 1.2rem;
line-height: 1.6;
color: #777;
}
a {
font-family: "Open Sans", sans-serif;
font-weight: 600;
font-size: 1.4rem;
color: #007bff;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
@media screen and (max-width: 768px) {
h1 {
font-size: 2.5rem;
}
p {
font-size: 1.2rem;
}
a {
font-size: 1.1rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1 class="title is-1">404 - Page Not Found</h1>
<p>Christmas Greetings 🎅🎄 - Data or URL Not Found.</p>
<br>
<p>Go back to</p><br> <a href="/" class="button is-link">homepage</a>
</div>
</body>
</html>