Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Astolfosb authored Aug 20, 2023
0 parents commit c32e27e
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
padding: 0;
font-family: 'CustomFont', sans-serif;
background: linear-gradient(to bottom right, purple, blue);
color: white;
}

.header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}

.logo {
margin-top: 20px;
font-size: 2.5em;
letter-spacing: 4px;
text-transform: uppercase;
}

.buttons {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 20px;
align-items: center;
}

.button {
padding: 10px 20px;
background-color: rgba(255, 255, 255, 0.1);
border: none;
color: white;
cursor: pointer;
border-radius: 5px; /* Rounded edges */
transition: background-color 0.3s ease;
text-decoration: none; /* Remove underline from links */
}

.button:hover {
background-color: rgba(255, 255, 255, 0.3);
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Your+Custom+Font&display=swap" rel="stylesheet">
<title>Astolfo Selfbot</title>
</head>
<body>
<div class="header">
<h1 class="logo">Astolfo Selfbot</h1>
<div class="buttons">
<a href="https://astolfosb.github.io/discord.html" target="_blank" class="button">Discord</a>
<a href="https://astolfosb.github.io/download.html" target="_blank" class="button">Download</a>
<a href="https://astolfosb.github.io/youtube.html" target="_blank" class="button">Youtube</a>
</div>
</div>
</body>
</html>

0 comments on commit c32e27e

Please sign in to comment.