mirror of
https://github.com/grey-cat-1908/website.git
synced 2024-11-11 18:57:26 +03:00
28 lines
598 B
HTML
28 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>
|