28 lines
555 B
HTML
28 lines
555 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>404 - Not Found</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f8f9fa;
|
|
color: #343a40;
|
|
text-align: center;
|
|
padding: 50px;
|
|
}
|
|
h1 {
|
|
font-size: 3em;
|
|
}
|
|
p {
|
|
font-size: 1.2em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>404 - Not Found</h1>
|
|
<p>Sorry, the page you are looking for could not be found.</p>
|
|
</body>
|
|
</html>
|