|
<!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> |