File size: 2,965 Bytes
44792ed |
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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Article Hub</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #0d0d0d;
color: #ffffff;
text-align: center;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: auto;
padding: 20px;
border-radius: 10px;
}
.block {
background: rgba(255, 0, 0, 0.2);
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
h2 {
color: #ff3333;
text-transform: uppercase;
letter-spacing: 1px;
}
.btn {
display: block;
width: 80%;
margin: 10px auto;
padding: 10px;
background: #ff3333;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: 0.3s ease;
}
.btn:hover {
background: #cc0000;
transform: scale(1.05);
}
.footer {
margin-top: 30px;
padding: 15px;
background: #111;
color: #ff3333;
font-size: 14px;
border-radius: 5px;
}
.footer a {
color: #ffffff;
text-decoration: none;
font-weight: bold;
}
.footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<div class="block">
<h2>SIMPING</h2>
<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>
<a href="https://telegra.ph/SMP-CONTINUED-SMP-301-VOL-1-03-10" class="btn">SMP VOL 2</a>
</div>
<div class="block">
<h2>KYS SERIES [KNOW YOURSELF]</h2>
<a href="https://telegra.ph/CRINGE-TYPA-GUY---CRG-101-HOW-TO-BE-PERFECT-03-10" class="btn">CRINGE OR DELULU CRG 101</a>
<a href="https://telegra.ph/FLR-101-SIMP-TO-FLIRT-IN-THIRTY-SECONDS-03-10" class="btn">FLR 101 SIMP TO FLIRT</a>
</div>
<div class="block">
<h2>ZESTY RISKS</h2>
<a href="https://telegra.ph/YFG-101-Your-home-boy-may-be-actually-gay-03-10" class="btn">YFG 101</a>
</div>
<div class="footer">
<p>© 2025 Reiker | Author: Sanji Gigachad</p>
<p>Join our <a href="https://t.me/reikertechtools">Telegram Channel</a></p>
</div>
</div>
</body>
</html> |