Archived
1
0

add 404 page in windows blue screen theme mixed with harry potter language

This commit is contained in:
2025-02-21 20:36:01 +01:00
parent cfa7a9d49c
commit 501592cadd
2 changed files with 60 additions and 0 deletions

23
src/index.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>404 Not Found</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>
404 - The Page That Must Not Be Named
</h1>
<!-- <h2>
The Page That Must Not Be Named
</h2> -->
<div class="error-message">
It seems youve stumbled upon a forbidden corridor.<br>
Lets get you back to a safer place, shall we?<br><br>
Maybe you were looking for the <a href="https://blog.amundsson.eu">library</a> or the <a href="https://niklas.amundsson.eu">history</a> classroom?
</div>
</div>
</body>
</html>

37
src/styles.css Normal file
View File

@ -0,0 +1,37 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
width: 100%;
font-family: monospace;
color: #FFFFFF;
background-color: #0000AA;
}
.container {
display: flex;
flex-direction: column;
justify-content: start;
align-items: start;
text-align: left;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 2rem;
}
.error-message {
font-size: 1.3rem;
a {
color: white;
}
}