forked from Astolfosb/Astolfosb.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (61 loc) · 1.98 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
<!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://discord.gg/ugJU7WuBuF" target="_blank" class="button"> Discord </a>
<a href="https://astolfosb.github.io/download.html" target="_blank" class="button">Download</a>
<a href="https://www.youtube.com/channel/UCag7cztDCgGUYX0Vu6tuu6A?sub_confirmation=1" target="_blank" class="button"> Youtube </a>
</div>
</div>
</body>
</html>