Simple notfound page (why pages.dev doesn't have one?)

This commit is contained in:
grey-cat-1908 2024-08-23 14:55:10 +03:00 committed by GitHub
parent 3cdb8e4ed7
commit 85e3e02fab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

27
404.html Normal file
View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 50px;
background-color: #f8f8f8;
}
h1 {
font-size: 50px;
}
p {
font-size: 20px;
}
</style>
</head>
<body>
<h1>404</h1>
<p>The page you are looking for does not exist.</p>
</body>
</html>