website/content/404.html
2024-08-23 14:55:48 +03:00

27 lines
598 B
HTML

<!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>