This repository was archived by the owner on Apr 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
104 lines (85 loc) · 2.27 KB
/
404.html
File metadata and controls
104 lines (85 loc) · 2.27 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>History Zone</title>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="https://ik.imagekit.io/l7uslhlci/IMG_3504.ico?updatedAt=1764897971514">
<!-- ADLaM Display Font -->
<link href="https://fonts.googleapis.com/css2?family=ADLaM+Display&display=swap" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-895YGYX9VX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-895YGYX9VX');
</script>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #000;
color: white;
}
/* Top bar */
.top-bar {
background: white;
color: black;
display: flex;
justify-content: space-between;
align-items: center;
padding: 25px 40px;
font-weight: 800;
font-size: 25px;
}
.left-logo img {
height: 65px;
}
.units-btn {
font-size: 25px;
font-weight: 800;
text-decoration: none;
color: black;
}
/* Hero section */
.hero {
min-height: 80vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
background: #000;
}
.hero h2 {
font-family: "ADLaM Display", sans-serif;
font-size: 25px;
font-weight: normal;
color: white;
}
.hero h1 {
font-family: "ADLaM Display", sans-serif;
font-size: 50px;
font-weight: normal;
color: white;
}
</style>
</head>
<body>
<!-- Top Bar -->
<div class="top-bar">
<div class="left-logo">
<img src="https://ik.imagekit.io/l7uslhlci/IMG_3275.png" alt="History Zone Logo">
</div>
<a href="http://history-zone.houselearning.org/" class="units-btn">Back To History-Zone</a>
<a href="http://houselearning.org/" class="units-btn">Go To HouseLearning</a>
</div>
<!-- Hero Section -->
<div class="hero">
<pre>
<h1>404 NOT FOUND</h1>
<h2>History-Zone Is A Division Of HouseLearning</h2>
</pre>
</div>
</body>
</html>