-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdiscord.html
More file actions
72 lines (72 loc) · 2.7 KB
/
Copy pathdiscord.html
File metadata and controls
72 lines (72 loc) · 2.7 KB
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>Piratehive Discord Channels</title>
<style>
body {
background-color: #1a1a1a;
color: #fff;
font-family: 'Arial', sans-serif;
text-align: center;
padding: 20px;
}
h1 {
color: #ff416c;
font-size: 3em;
margin-bottom: 20px;
text-shadow: 2px 2px #ff0000;
}
.channel-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 20px;
}
.channel-link {
text-decoration: none;
color: #fff;
border: 2px solid #ff416c;
padding: 15px;
border-radius: 10px;
transition: transform 0.3s ease;
}
.channel-link:hover {
transform: scale(1.1);
}
/* Styles for the main channel */
.main-channel {
background-color: #ff416c; /* Highlight color */
border: 4px solid #fff; /* Thicker border */
color: #000; /* Text color for contrast */
font-size: 3em; /* Larger font size */
font-weight: bold; /* Bold text */
padding: 30px; /* Extra padding */
border-radius: 15px; /* More rounded corners */
margin-bottom: 20px; /* Space below the main channel */
transition: transform 0.3s ease;
}
.main-channel:hover {
transform: scale(1.05); /* Slightly enlarge on hover */
}
</style>
</head>
<body>
<h1>Join the Piratehive Community</h1>
<div class="channel-list">
<a href="#" class="channel-link main-channel">Piratehive Discord</a>
<a href="#" class="channel-link">Channel 1</a>
<a href="#" class="channel-link">Channel 2</a>
<a href="#" class="channel-link">Channel 3</a>
<a href="#" class="channel-link">Channel 4</a>
<a href="#" class="channel-link">Channel 5</a>
<a href="#" class="channel-link">Channel 6</a>
<a href="#" class="channel-link">Channel 7</a>
<a href="#" class="channel-link">Channel 8</a>
<a href="#" class="channel-link">Channel 9</a>
<a href="#" class="channel-link">Channel 10</a>
</div>
<p style="margin-top: 20px; font-size: 1.2em;">Joining this exclusive channel will give you access to the latest leaks, insider info, and a community of like-minded rebels. Don't miss out on the action!</p>
</body>
</html>