fixed 404.css

This commit is contained in:
Jonas_Jones 2025-01-31 20:45:52 +01:00
parent e8f1a6426c
commit 4fb13a6243
2 changed files with 26 additions and 13 deletions

20
404.css Normal file
View file

@ -0,0 +1,20 @@
html, body {
height: 100%;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
.container {
text-align: center;
}
h1 {
color: teal;
font-size: 600%;
padding-top: 10%;
}
p {
font-size: xx-large;
}

View file

@ -2,21 +2,14 @@
<html>
<head>
<link href="images/logo.png" rel="icon">
<link rel="stylesheet" href="/main.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="404.css">
<title>Page Not Found</title>
<style>
h1 {
color: teal;
font-size: 600%;
padding-top: 10%;
}
p {
font-size: xx-large;
}
</style>
</head>
<body>
<h1 style="text-align: center;">404</h1>
<p style="text-align: center;">The content you're looking for doesn't exist.</p>
<div class="container">
<h1>404</h1>
<p>The content you're looking for doesn't exist.</p>
</div>
</body>
</html>