-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (62 loc) · 2.14 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
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Glitch - idk what to put here</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<style>
body {
background-color: #222;
color: #eee;
font-family: 'Arial', sans-serif;
text-align: center;
margin: 0;
padding: 0;
}
h1 {
font-size: 3em;
margin-top: 2em;
}
h3 {
font-size: 1.5em;
margin-top: 1em;
}
p {
margin-top: 1em;
line-height: 1.5;
}
a {
color: #00b0ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 2em;
}
.discord-widget {
width: 350px;
height: 500px;
border: none;
}
</style>
</head>
<body>
<div class="container">
<h1>Hi I'm Glitch :3</h1>
<h3>I have experience in Python development</h3>
<h3>I can develop Discord bots for free</h3>
<h3>Donations are appreciated</h3>
<p>Contact me on Discord or <a href="https://discord.gg/mC7dYQS6h9">join my server</a><br />glitch714</p>
<p><a href="https://www.buymeacoffee.com/glitch714"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=☕&slug=glitch714&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff" /></a></p>
<iframe src="https://discord.com/widget?id=1323859305098907710&theme=dark" class="discord-widget" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>
</body>
</html>