46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hypno Gallery - Redirecting...</title>
|
|
<script>
|
|
// Immediate redirect
|
|
window.location.href = 'hypno-menu.html';
|
|
</script>
|
|
<meta http-equiv="refresh" content="0; url=hypno-menu.html">
|
|
<style>
|
|
body {
|
|
background: #1a1a2e;
|
|
color: #fff;
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
.redirect-message {
|
|
text-align: center;
|
|
}
|
|
.redirect-message h1 {
|
|
color: #667eea;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.redirect-message a {
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
}
|
|
.redirect-message a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="redirect-message">
|
|
<h1>🌀 Redirecting to Hypno Gallery Menu...</h1>
|
|
<p>If you are not redirected, <a href="hypno-menu.html">click here</a>.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|