Paste HTML โ Get Live URL Instantly
Slug (URL path, e.g.
barberjoe
)
HTML Content
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Barber Joe - Walk-ins Welcome</title> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; margin: 0; padding: 0; background: #020617; color: #e5e7eb; } .hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; } .card { max-width: 640px; width: 100%; background: #020617; border-radius: 16px; padding: 24px; border: 1px solid #1f2937; box-shadow: 0 20px 40px rgba(15,23,42,0.8); } .badge { display: inline-block; padding: 4px 10px; border-radius: 999px; border: 1px solid #22c55e33; font-size: 12px; color: #bbf7d0; margin-bottom: 12px; } .title { font-size: 28px; font-weight: 700; margin-bottom: 8px; } .subtitle { font-size: 14px; color: #9ca3af; margin-bottom: 16px; } .pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: #22c55e1a; color: #bbf7d0; font-size: 12px; margin-bottom: 20px; } .pill-dot { width: 8px; height: 8px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 10px #22c55e; } .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; margin-bottom: 20px; } .item { padding: 10px 12px; border-radius: 12px; background: #020617; border: 1px solid #1f2937; text-align: left; } .item-label { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; } .item-value { font-size: 14px; color: #e5e7eb; } .cta-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; } .cta-main { padding: 10px 14px; border-radius: 999px; border: none; cursor: pointer; background: #22c55e; color: #022c22; font-weight: 600; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; } .cta-main span.icon { font-size: 18px; } .cta-sub { font-size: 12px; color: #9ca3af; } .meta { font-size: 11px; color: #4b5563; display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; margin-top: 6px; } @media (min-width: 640px) { .title { font-size: 32px; } .card { padding: 28px; } } </style> </head> <body> <section class="hero"> <div class="card"> <div class="badge">Barber Joe ยท Tampines</div> <h1 class="title">Fresh fades. Zero booking drama.</h1> <p class="subtitle">Walk-ins welcome daily. Quick, clean cuts for guys who want to look sharp without wasting the whole afternoon.</p> <div class="pill"> <span class="pill-dot"></span> <span>Shortest wait after 2:30pm on weekdays</span> </div> <div class="grid"> <div class="item"> <div class="item-label">Today's hours</div> <div class="item-value">11:00am โ 9:00pm</div> </div> <div class="item"> <div class="item-label">Location</div> <div class="item-value">Blk 123 Tampines St 11 #01-11</div> </div> <div class="item"> <div class="item-label">Whatsapp</div> <div class="item-value">+65 9123 4567</div> </div> <div class="item"> <div class="item-label">Best for</div> <div class="item-value">Skin fades ยท Beard trim</div> </div> </div> <div class="cta-row"> <button class="cta-main"> <span class="icon">๐</span> <span>WhatsApp to check waiting time</span> </button> <div class="cta-sub"> Prefer to just walk in? No problem. Most guys are in and out in under 30 minutes. </div> </div> <div class="meta"> <span>Last updated: Jan 2026</span> <span>Powered by your barber's friend who loves building tools.</span> </div> </div> </section> </body> </html>
Deploy to WWWuniverse!