-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 1.75 KB
/
index.html
File metadata and controls
64 lines (64 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chopin Tools</title>
<style>
body, html {
height: 100%;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: #121212;
color: #ffffff;
font-family: Arial, sans-serif;
}
.splash-screen {
text-align: center;
}
.splash-screen h1 {
font-size: 3rem;
color: #ffffff;
}
.splash-screen p {
font-size: 1rem;
color: #b3b3b3;
}
.loading-bar {
width: 100%;
background-color: #444;
border-radius: 5px;
margin-top: 20px;
overflow: hidden;
}
.loading-bar div {
height: 10px;
width: 0;
background-color: #7e00cc;
animation: load 1s linear forwards;
}
@keyframes load {
0% { width: 0; }
100% { width: 100%; }
}
</style>
<script>
document.addEventListener("DOMContentLoaded", function() {
setTimeout(function() {
window.location.href = "https://chopin-tools.my.id";
}, 3000); // Redirect after 3 seconds
});
</script>
</head>
<body>
<div class="splash-screen">
<img src="assets/images/logo.svg" style="width: 300px;" alt="">
<p>Redirecting you to website...</p>
<div class="loading-bar">
<div></div>
</div>
</div>
</body>
</html>