Upload index 6.html
Browse files- index 6.html +107 -0
index 6.html
ADDED
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Article Hub</title>
|
7 |
+
<style>
|
8 |
+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
|
9 |
+
|
10 |
+
body {
|
11 |
+
font-family: 'Poppins', sans-serif;
|
12 |
+
background-color: #0d0d0d;
|
13 |
+
color: #ffffff;
|
14 |
+
text-align: center;
|
15 |
+
margin: 0;
|
16 |
+
padding: 20px;
|
17 |
+
}
|
18 |
+
|
19 |
+
.container {
|
20 |
+
max-width: 800px;
|
21 |
+
margin: auto;
|
22 |
+
padding: 20px;
|
23 |
+
border-radius: 10px;
|
24 |
+
}
|
25 |
+
|
26 |
+
.block {
|
27 |
+
background: rgba(255, 0, 0, 0.2);
|
28 |
+
padding: 20px;
|
29 |
+
border-radius: 8px;
|
30 |
+
margin-bottom: 20px;
|
31 |
+
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
|
32 |
+
}
|
33 |
+
|
34 |
+
h2 {
|
35 |
+
color: #ff3333;
|
36 |
+
text-transform: uppercase;
|
37 |
+
letter-spacing: 1px;
|
38 |
+
}
|
39 |
+
|
40 |
+
.btn {
|
41 |
+
display: block;
|
42 |
+
width: 80%;
|
43 |
+
margin: 10px auto;
|
44 |
+
padding: 10px;
|
45 |
+
background: #ff3333;
|
46 |
+
color: #ffffff;
|
47 |
+
text-decoration: none;
|
48 |
+
border-radius: 5px;
|
49 |
+
font-weight: bold;
|
50 |
+
transition: 0.3s ease;
|
51 |
+
}
|
52 |
+
|
53 |
+
.btn:hover {
|
54 |
+
background: #cc0000;
|
55 |
+
transform: scale(1.05);
|
56 |
+
}
|
57 |
+
|
58 |
+
.footer {
|
59 |
+
margin-top: 30px;
|
60 |
+
padding: 15px;
|
61 |
+
background: #111;
|
62 |
+
color: #ff3333;
|
63 |
+
font-size: 14px;
|
64 |
+
border-radius: 5px;
|
65 |
+
}
|
66 |
+
|
67 |
+
.footer a {
|
68 |
+
color: #ffffff;
|
69 |
+
text-decoration: none;
|
70 |
+
font-weight: bold;
|
71 |
+
}
|
72 |
+
|
73 |
+
.footer a:hover {
|
74 |
+
text-decoration: underline;
|
75 |
+
}
|
76 |
+
</style>
|
77 |
+
</head>
|
78 |
+
<body>
|
79 |
+
|
80 |
+
<div class="container">
|
81 |
+
|
82 |
+
<div class="block">
|
83 |
+
<h2>SIMPING</h2>
|
84 |
+
<a href="https://telegra.ph/SMP-101-AND-ZST-SERIES-THE-SIMP-AND-ZESTY-MANUAL-03-07" class="btn">SMP 101 X ZST SERIES</a>
|
85 |
+
<a href="https://telegra.ph/SMP-CONTINUED-SMP-301-VOL-1-03-10" class="btn">SMP VOL 2</a>
|
86 |
+
</div>
|
87 |
+
|
88 |
+
<div class="block">
|
89 |
+
<h2>KYS SERIES [KNOW YOURSELF]</h2>
|
90 |
+
<a href="https://telegra.ph/CRINGE-TYPA-GUY---CRG-101-HOW-TO-BE-PERFECT-03-10" class="btn">CRINGE OR DELULU CRG 101</a>
|
91 |
+
<a href="https://telegra.ph/FLR-101-SIMP-TO-FLIRT-IN-THIRTY-SECONDS-03-10" class="btn">FLR 101 SIMP TO FLIRT</a>
|
92 |
+
</div>
|
93 |
+
|
94 |
+
<div class="block">
|
95 |
+
<h2>ZESTY RISKS</h2>
|
96 |
+
<a href="https://telegra.ph/YFG-101-Your-home-boy-may-be-actually-gay-03-10" class="btn">YFG 101</a>
|
97 |
+
</div>
|
98 |
+
|
99 |
+
<div class="footer">
|
100 |
+
<p>© 2025 Reiker | Author: Sanji Gigachad</p>
|
101 |
+
<p>Join our <a href="https://t.me/reikertechtools">Telegram Channel</a></p>
|
102 |
+
</div>
|
103 |
+
|
104 |
+
</div>
|
105 |
+
|
106 |
+
</body>
|
107 |
+
</html>
|