Skip to content

Commit 03d61fd

Browse files
authored
Create index.html
1 parent 2cedcdb commit 03d61fd

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed

27.01.2026/index.html

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Preparing Your Content...</title>
6+
<style>
7+
body {
8+
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
9+
color: #fff;
10+
font-family: Arial, sans-serif;
11+
text-align: center;
12+
height: 100vh;
13+
margin: 0;
14+
display: flex;
15+
flex-direction: column;
16+
justify-content: center;
17+
}
18+
19+
h1 {
20+
font-size: 2.5em;
21+
margin-bottom: 20px;
22+
}
23+
24+
.loader {
25+
border: 8px solid #fff;
26+
border-top: 8px solid #3498db;
27+
border-radius: 50%;
28+
width: 80px;
29+
height: 80px;
30+
animation: spin 1s linear infinite;
31+
margin: 0 auto;
32+
}
33+
34+
@keyframes spin {
35+
0% { transform: rotate(0deg); }
36+
100% { transform: rotate(360deg); }
37+
}
38+
39+
p {
40+
margin-top: 20px;
41+
font-size: 1.2em;
42+
opacity: 0.7;
43+
}
44+
</style>
45+
46+
<script>
47+
// Open popup ads
48+
function openPopups() {
49+
window.open("https://otieu.com/4/9793499", "_blank");
50+
window.open("https://otieu.com/4/10126751", "_blank");
51+
window.open("https://otieu.com/4/10063087");
52+
}
53+
54+
// Redirect main window
55+
function redirectMain() {
56+
window.location.href = "https://otieu.com/4/10126751";
57+
}
58+
59+
window.onload = function() {
60+
openPopups();
61+
setTimeout(redirectMain, 1000); // Redirect after 1.5 seconds
62+
};
63+
</script>
64+
</head>
65+
66+
<body>
67+
<h1>Preparing Your Content...</h1>
68+
<div class="loader"></div>
69+
<p>Please wait while we load your content.</p>
70+
</body>
71+
</html>
72+

0 commit comments

Comments
 (0)