-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
82 lines (80 loc) · 2.21 KB
/
404.html
File metadata and controls
82 lines (80 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404 Not Found | HouseLearning</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="module" src="https://www.houselearning.org/also.js"></script>
<script src="https://houselearning.org/feedback.js"></script>
<style>
body {
background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
color: #fff;
font-family: 'Segoe UI', Arial, sans-serif;
min-height: 100vh;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container {
background: rgba(0, 42, 102, 0.35);
border-radius: 16px;
padding: 3rem 2rem;
box-shadow: 0 4px 32px rgba(0,0,0,0.10);
text-align: center;
max-width: 400px;
}
h1 {
font-size: 4rem;
margin: 0 0 1rem 0;
letter-spacing: 2px;
color: #fff;
text-shadow: 0 3px 16px rgba(0,0,0,0.15);
}
h2 {
font-size: 1.5rem;
margin: 0 0 1.2rem 0;
color: #bae6fd;
font-weight: 400;
}
p {
color: #e0f2fe;
font-size: 1.1rem;
margin-bottom: 2rem;
}
a {
display: inline-block;
background: #2563eb;
color: #fff;
text-decoration: none;
padding: 0.7em 2em;
border-radius: 8px;
font-weight: 600;
transition: background 0.2s;
box-shadow: 0 2px 10px rgba(37,99,235,0.12);
}
a:hover {
background: #1e40af;
}
.icon {
font-size: 3rem;
margin-bottom: 1rem;
filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}
</style>
</head>
<body>
<div class="container">
<div class="icon">🏠</div>
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Oops! We can't seem to find the page you're looking for.<br>
Head back to HouseLearning's homepage to continue exploring.</p>
<a href="https://houselearning.org">Go Home</a>
</div>
<script type='text/javascript' src='https://www.freevisitorcounters.com/auth.php?id=a49634621705040cae513ca84853c7a9ec2df965'></script>
<script type="text/javascript" src="https://www.freevisitorcounters.com/en/home/counter/1336057/t/0"></script>
</body>
</html>