-
Notifications
You must be signed in to change notification settings - Fork 1
/
discord.html
67 lines (62 loc) · 1.92 KB
/
discord.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
67
<!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>
<title>Astolfo Selfbot</title>
<meta content="Astolfo Selfbot" property="og:title" />
<meta content="Official Astolfo selfbot discord server." property="og:description" />
<meta content="#BF40BF" data-react-helmet="true" name="theme-color" />
<meta property="og:image" content="https://i.imgur.com/vXUSoOS.jpeg" />
</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>
</div>
</div>
</body>
</html>