-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (79 loc) · 2.45 KB
/
index.html
File metadata and controls
88 lines (79 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learn Bot Making in just 10 mins</title>
<style>
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSWDmRsu_iatxZQJCgapQxNo7az2-F_pVdliw&usqp=CAU') center/cover no-repeat;
}
.glowing-container {
animation: glow 1s infinite alternate;
}
.center-button {
padding: 20px;
font-size: 18px;
text-align: center;
text-decoration: none;
cursor: pointer;
background-color: red;
color: #ffffff;
display: block;
margin: 0 auto;
border-radius: 5px;
transition: background-color 0.3s ease;
box-shadow: 0 0 10px rgba(255, 255, 0, 0.8), 0 0 20px rgba(0, 0, 255, 0.8);
}
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
justify-content: center;
align-items: center;
text-align: center;
z-index: 999;
}
.message {
color: #fff;
font-size: 20px;
margin-bottom: 10px; /* Adjust spacing */
}
.center-button:hover {
background-color: #2980b9;
}
@keyframes glow {
0% {
box-shadow: 0 0 10px rgba(255, 255, 0, 0.8), 0 0 20px rgba(0, 0, 255, 0.8);
}
100% {
box-shadow: 0 0 20px rgba(255, 255, 0, 0.8), 0 0 40px rgba(0, 0, 255, 0.8);
}
}
</style>
</head>
<body>
<button class="center-button" onclick="redirectToWebsite()">Click Here to Start</button>
<div class="overlay" id="overlay">
<div class="message">Redirecting You to My Website...</div>
</div>
<script>
function redirectToWebsite() {
// Show the overlay with the message
document.getElementById('overlay').style.display = 'block';
// Delay for 5 seconds before redirecting
setTimeout(function() {
window.location.href = 'https://muindi6602.github.io';
}, 3000); // 3000 milliseconds = 3 seconds
}
</script></body>
</html>