This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (73 loc) · 1.96 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
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<title>PackedBerry!</title>
<link rel="fav icon" href="PackedBerry.png">
<meta name="description" content="PackedBerry is a simple Discord bot.">
<meta property="og:url" content="https://attachment-studios.github.io">
<meta property="og:type" content="website">
<meta property="og:title" content="PackedBerry">
<meta property="og:description" content="PackedBerry is a simple Discord bot.">
<meta property="og:image" content="Social.png">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="attachment-studios.github.io">
<meta property="twitter:url" content="https://attachment-studios.github.io">
<meta name="twitter:title" content="PackedBerry">
<meta name="twitter:description" content="PackedBerry is a simple Discord bot.">
<meta name="twitter:image" content="Social.png">
<style>
@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');
* {
background: #ceb78c;
color: #000000;
user-select: none;
font-family: 'Jua', sans-serif;
margin: 0;
padding: 0;
}
h1 {
font-size: 64px;
margin: 0;
padding: 0;
}
h2 {
font-size: 32px;
margin: 0;
padding: 0;
}
h3 {
font-size: 16px;
margin: 0;
padding: 0;
color: #ab945a;
cursor: pointer;
transition: 0.15s;
}
h3:hover {
color: #000000;
transition: 0.15s;
}
</style>
<script>
location.replace('https://packedberry.attaditya.repl.co/')
window.addEventListener('contextmenu', e => {
e.preventDefault();
location.reload();
});
</script>
</head>
<body>
<div class="title" style="margin-bottom: 30px;">
<center>
<h1>PackedBerry!</h1>
<h2>Service</h2>
<h3 onclick="window.open('https://attachment-studios.github.io/PackedBerry');">https://attachment-studios.github.io/PackedBerry</h3>
</center>
</div>
<div class="title" style="margin-bottom: 30px;">
<center>
<h2>Active Servers</h2>
</center>
</div>
</body>
</html>