Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
5H2 authored Apr 15, 2024
1 parent efcd8e1 commit d644d82
Showing 1 changed file with 49 additions and 18 deletions.
67 changes: 49 additions & 18 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,53 @@
<!---[ MIWMOW ]--->
<!DOCTYPE html>
<html>
<html lang="en">

<head>
<title>Redirecting...</title>
<style>
body {
background-color: #22272e;
color: white; /* Adding white text color for better readability */
font-family: Arial, sans-serif; /* Adding a generic font-family */
}
a {
color: white; /* Ensuring links are visible in white color */
}
</style>
<script type="text/javascript">
window.location.replace("access-key");
</script>
</head>
<body>
<p>If you are not redirected automatically, <a href="access-key">click here</a>.</p>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>✿ Skyblock Seniors</title>
<style>
body {
background-color: #22272e;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
margin: 0;
}

img {
max-width: 80%;
margin-top: -500px;
margin-top: -200px;/* Move the image up by 50px */
}

button {
margin-top: 20px; /* Add margin to separate button from image */
padding: 15px 30px;
font-size: 18px;
background-color: #515c6b;
color: #ffffff;
border: 1px solid #353d47;
cursor: pointer;
border-radius: 10px; /* Rounded corners */
transition: background-color 0.3s; /* Smooth transition effect */
}

button:hover {
background-color: #93a4ba;
}
</style>

<button onclick="redirectToPage()">Enter</button>

<script>
function redirectToPage() {
// Redirect to the specified URL
window.location.href = 'https://skyblockseniors.com/access-key';
}
</script>
</body>

</html>

0 comments on commit d644d82

Please sign in to comment.