Untitled
unknown
plain_text
2 months ago
2.3 kB
5
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Subscriber Wall</title>
<style>
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #0f172a; color: white; display: flex; justify-content: center; padding: 20px; }
.container { width: 100%; max-width: 400px; text-align: center; }
.header { font-size: 24px; font-weight: bold; margin-bottom: 20px; color: #38bdf8; }
.name-card { background: #1e293b; padding: 15px; margin: 10px 0; border-radius: 12px; border: 1px solid #334155; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.badge { color: #fbbf24; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
</style>
</head>
<body>
<div class="container">
<div class="header">VIP SUBSCRIBERS</div>
<div class="name-card"><span class="badge">PRO</span><br>Alex Johnson</div>
<div class="name-card"><span class="badge">LEGEND</span><br>Sarah Miller</div>
<div class="name-card"><span class="badge">STAR</span><br>David Chen</div>
</div>
</body>
</html>
Editor is loading...
Leave a Comment