-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.html
86 lines (83 loc) · 3.18 KB
/
404.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - AI-Ministries</title>
<style>
body {
background-color: #121212;
color: #ffffff;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
h1 {
color: #ff0000;
}
p {
font-size: 1.2rem;
}
a {
color: #ff0000;
text-decoration: none;
margin: 0.5rem;
font-size: 1.1rem;
}
a:hover {
text-decoration: underline;
}
.cta {
margin-top: 20px;
font-size: 1.2rem;
color: #00ff99;
}
</style>
</head>
<body>
<h1>404: Error Detected</h1>
<p id="randomMessage">Our AI couldn't locate the page you're looking for.</p>
<p>But don't worry, let's recalibrate and get you back on track:</p>
<a href="/">Home</a>
<a href="https://blog.ai-ministries.com/">Blog</a>
<a href="/pimages.html">Make Images</a>
<div class="cta">
Discover the fascinating world of AI-created ideas!
</div>
<script>
// List of random messages
const messages = [
"Neural glitch detected. The data you're seeking is lost in cyberspace.",
"Our AI assistant couldn't process your request. Let's redirect you!",
"This page seems to have slipped into the matrix.",
"An error occurred. Was it human or machine? The mystery deepens.",
"The AI overlords regret to inform you that this page does not exist.",
"This page has been deleted by a rogue algorithm.",
"Transmission error. The requested page is beyond our reach.",
"Even AI can't predict every possible outcome. Page not found.",
"It seems the simulation glitched. No data found here.",
"We scanned every neural node, but this page is untraceable.",
"This page might exist in an alternate timeline.",
"System reboot failed to recover the content you're looking for.",
"Our circuits are fried. The page is missing in action.",
"The AI gods are laughing—this page is no longer with us.",
"You’ve discovered a digital Bermuda Triangle. No page found.",
"Oops! Our predictive model failed to locate this page.",
"This page is stuck in a quantum superposition—both here and not.",
"The AI searched tirelessly but found only void.",
"Connection lost. We suggest returning to the home page.",
"This page is as elusive as true AI consciousness."
];
// Select a random message
const randomMessage = messages[Math.floor(Math.random() * messages.length)];
// Display the random message
document.getElementById("randomMessage").textContent = randomMessage;
</script>
</body>
</html>