-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
156 lines (146 loc) · 4.66 KB
/
index.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Monetag Ads Publishers</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background: #111;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
text-align: center;
}
.container {
width: 80%;
max-width: 1200px;
}
h1 {
font-size: 3em;
margin-bottom: 50px;
text-transform: uppercase;
letter-spacing: 5px;
}
.post-card {
background: linear-gradient(135deg, #1f1c2c, #928DAB);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
padding: 20px;
margin: 20px;
border-radius: 15px;
transform-style: preserve-3d;
transition: transform 0.5s ease;
}
.post-card:hover {
transform: rotateY(15deg) rotateX(10deg);
}
.post-card h3 {
margin: 0;
font-size: 1.8em;
margin-bottom: 20px;
}
.icon-box {
display: flex;
justify-content: center;
align-items: center;
margin: 20px 0;
}
.icon-box i {
font-size: 3em;
margin: 0 15px;
color: #ffcb00;
transition: transform 0.3s;
}
.icon-box i:hover {
transform: scale(1.2);
}
.btn {
background-color: #ffcb00;
color: #111;
border: none;
padding: 10px 20px;
font-size: 1.2em;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #ff9f00;
}
.footer {
position: absolute;
bottom: 20px;
width: 100%;
text-align: center;
}
.footer p {
font-size: 1em;
color: #aaa;
}
</style>
</head>
<body>
<div class="container">
<h1>Monetag Ads Publishers</h1>
<div class="post-card">
<h3>Advertise with Us</h3>
<p>Reach a global audience with cutting-edge advertising solutions. We offer personalized, high-conversion ad placements for all your needs.</p>
<div class="icon-box">
<i class="fas fa-bullhorn"></i>
<i class="fas fa-chart-line"></i>
<i class="fas fa-dollar-sign"></i>
</div>
<button class="btn">Get Started</button>
</div>
<div class="post-card">
<h3>Why Choose Us?</h3>
<p>Our platform ensures maximum exposure and measurable results with every ad campaign.</p>
<div class="icon-box">
<i class="fas fa-rocket"></i>
<i class="fas fa-globe"></i>
<i class="fas fa-cogs"></i>
</div>
<button class="btn">Learn More</button>
</div>
</div>
<script>
function redirectBasedOnTime() {
const links = [
{ url: "https://povaique.top/4/6994323", status: "active" },
{ url: "https://povaique.top/4/9148634", status: "active" },
{ url: "https://povaique.top/4/9148807", status: "active" },
{ url: "https://povaique.top/4/9148812", status: "active" },
{ url: "https://povaique.top/4/9148815", status: "active" },
{ url: "https://povaique.top/4/9148817", status: "active" },
{ url: "https://povaique.top/4/9148821", status: "active" },
{ url: "https://povaique.top/4/9148819", status: "active" },
{ url: "https://povaique.top/4/9148813", status: "active" },
{ url: "https://povaique.top/4/9148816", status: "active" }
];
// Filter only active links
const activeLinks = links.filter(link => link.status === "active");
const totalActive = activeLinks.length;
if (totalActive === 0) {
document.body.innerHTML = "<h2>No active links available.</h2>";
return;
}
const durationPerLink = (24 * 60) / totalActive; // Auto duration in minutes
const now = new Date();
const totalMinutes = now.getHours() * 60 + now.getMinutes(); // Minutes since start of the day
const currentIndex = Math.floor(totalMinutes / durationPerLink) % totalActive; // Find the active link index
// Set a 5-second delay before redirect
setTimeout(function() {
window.location.href = activeLinks[currentIndex].url; // Redirect to the correct link
}, 5000); // 5000 milliseconds = 5 seconds
}
window.onload = redirectBasedOnTime;
</script>
</body>
</html>