| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Hotel Listings - HNL</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; } |
| #render-target { |
| width: 1080px; height: 2400px; position: relative; overflow: hidden; |
| background: #F6F7F9; color: #202124; |
| } |
| |
| |
| .appbar { |
| padding: 28px 32px 16px 24px; |
| background: #FFFFFF; |
| box-shadow: 0 1px 0 rgba(0,0,0,0.06); |
| } |
| .appbar-row { |
| display: flex; align-items: center; justify-content: space-between; |
| } |
| .left-row { display: flex; align-items: center; gap: 20px; } |
| .title { font-size: 44px; font-weight: 700; } |
| .subtitle { color: #5f6368; font-size: 30px; margin-top: 6px; } |
| .r-icons { display: flex; align-items: center; gap: 28px; color:#5f6368; } |
| .icon-btn { width: 52px; height: 52px; display:flex; align-items:center; justify-content:center; } |
| |
| |
| .chip-row { |
| background: #FFFFFF; padding: 22px 16px 26px; display: flex; gap: 18px; overflow: hidden; |
| border-bottom: 1px solid rgba(0,0,0,0.06); |
| } |
| .chip { |
| background:#fff; padding: 22px 28px; border-radius: 18px; border: 3px solid #E0E0E0; min-width: 240px; |
| line-height: 1.1; |
| } |
| .chip strong { display:block; font-size:36px; } |
| .chip span { display:block; color:#5f6368; font-size:26px; margin-top:6px; } |
| .chip.active { border-color:#202124; box-shadow: 0 2px 0 #202124 inset; } |
| |
| |
| .list { padding-top: 14px; } |
| .card { |
| width: 1004px; margin: 18px auto; border-radius: 28px; background:#fff; |
| box-shadow: 0 8px 24px rgba(0,0,0,0.08); display:flex; overflow:hidden; |
| } |
| .card-img { |
| width: 360px; height: 540px; position: relative; background:#E0E0E0; border-right:1px solid #BDBDBD; |
| display:flex; align-items:center; justify-content:center; color:#757575; font-size:28px; text-align:center; |
| } |
| .img-overlay-heart { |
| position:absolute; top:16px; left:16px; width:56px; height:56px; border-radius:50%; background:rgba(255,255,255,0.85); |
| display:flex; align-items:center; justify-content:center; |
| } |
| .img-dots { |
| position:absolute; left:22px; bottom:18px; display:flex; gap:10px; |
| } |
| .img-dot { width:22px; height:22px; border-radius:50%; background:#FFFFFF; opacity:0.9; } |
| .img-dot.dim { background:#D0D0D0; } |
| |
| .card-body { flex:1; padding:28px 28px 24px; position: relative; } |
| .badge { |
| display:inline-block; padding:10px 16px; background:#EEF1F4; color:#202124; border-radius:10px; font-weight:600; font-size:26px; |
| margin-bottom:14px; |
| } |
| .hotel-title { font-size:40px; font-weight:800; line-height:1.2; margin: 6px 0 8px; } |
| .rating-row { display:flex; align-items:center; gap:14px; color:#202124; margin: 4px 0 6px; } |
| .rating-row .label { color:#5f6368; font-size:28px; } |
| .location { color:#5f6368; font-size:28px; margin: 6px 0 14px; } |
| |
| .bullet { display:flex; align-items:flex-start; gap:12px; color:#5f6368; font-size:26px; margin: 10px 0; } |
| .bullet .note { color:#6C4DFF; font-weight:700; } |
| |
| .price-area { margin-top: 16px; } |
| .price { color:#6C4DFF; font-size:56px; font-weight:800; line-height:1; } |
| .old { color:#8b8f93; text-decoration: line-through; font-size:30px; margin-top:6px; } |
| .sites { color:#8b8f93; font-size:26px; margin-top:2px; } |
| |
| .cta { |
| position:absolute; right:28px; bottom:28px; padding:22px 34px; border-radius:16px; |
| background: linear-gradient(135deg, #FF7A18, #FF3D00); color:#fff; font-weight:700; font-size:32px; border:none; |
| } |
| |
| |
| .sticky { |
| position:absolute; left:120px; right:120px; bottom:160px; background:#2E343B; color:#fff; |
| border-radius:24px; box-shadow: 0 12px 24px rgba(0,0,0,0.25); display:flex; padding:22px; gap:18px; align-items:center; |
| } |
| .sticky .pill { |
| flex:1; display:flex; align-items:center; gap:18px; justify-content:center; background:#394049; padding:18px 16px; |
| border-radius:18px; font-size:32px; font-weight:600; |
| } |
| .divider-v { width: 18px; } |
| |
| |
| .home-indicator { |
| position:absolute; left:50%; transform:translateX(-50%); bottom:64px; width:360px; height:10px; background:#000; |
| opacity:0.18; border-radius:10px; |
| } |
| |
| |
| .svg { width:36px; height:36px; } |
| .star { width:28px; height:28px; fill:#202124; } |
| .muted { color:#5f6368; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="appbar"> |
| <div class="appbar-row"> |
| <div class="left-row"> |
| <div class="icon-btn"> |
| <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#202124" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"> |
| <path d="M15 5L8 12l7 7"/> |
| </svg> |
| </div> |
| <div> |
| <div class="title">HNL</div> |
| <div class="subtitle">Jan 29 – Feb 5 • <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"><path d="M3 10h18M6 10V6h12v4M5 20h14a2 2 0 0 0 2-2v-6H3v6a2 2 0 0 0 2 2z"/></svg> 1 • <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"><path d="M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm6 8H6a6 6 0 0 1 12 0z"/></svg> 1</div> |
| </div> |
| </div> |
| <div class="r-icons"> |
| <div class="icon-btn" title="Share"> |
| <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"> |
| <circle cx="18" cy="5" r="3"/><circle cx="6" cy="12" r="3"/><circle cx="18" cy="19" r="3"/> |
| <path d="M8.7 10.9l6.6-3.8M8.7 13.1l6.6 3.8"/> |
| </svg> |
| </div> |
| <div class="icon-btn" title="Currency"> |
| <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"><path d="M12 3v18M8 7h8M8 12h8M8 17h8"/></svg> |
| </div> |
| <div style="font-size:28px; color:#5f6368">USD</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="chip-row"> |
| <div class="chip active"> |
| <strong>Recommended</strong> |
| <span>$228</span> |
| </div> |
| <div class="chip"> |
| <strong>Cheapest</strong> |
| <span>$48</span> |
| </div> |
| <div class="chip"> |
| <strong>Closest</strong> |
| <span>$132</span> |
| </div> |
| <div class="chip"> |
| <strong>Deals</strong> |
| <span>$228</span> |
| </div> |
| </div> |
|
|
| |
| <div class="list"> |
|
|
| |
| <div class="card"> |
| <div class="card-img"> |
| [IMG: Hotel lobby] |
| <div class="img-overlay-heart"> |
| <svg viewBox="0 0 24 24" width="26" height="26" fill="none" stroke="#E9425E" stroke-width="2"> |
| <path d="M12 21s-6.5-4.3-9-7.8A5.5 5.5 0 0 1 12 5a5.5 5.5 0 0 1 9 8.2C18.5 16.7 12 21 12 21z"/> |
| </svg> |
| </div> |
| <div class="img-dots"> |
| <div class="img-dot"></div> |
| <div class="img-dot dim"></div> |
| <div class="img-dot dim"></div> |
| </div> |
| </div> |
| <div class="card-body"> |
| <div class="badge">Resort</div> |
| <div class="hotel-title">Alohilani Resort Waikiki Beach</div> |
| <div class="rating-row"> |
| <span> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| </span> |
| <span class="label">Excellent <strong>8.0</strong></span> |
| </div> |
| <div class="location">Waikiki</div> |
|
|
| <div class="bullet"> |
| <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"><path d="M21 15a7.5 7.5 0 0 1-15 0V6l7.5-3L21 6v9z"/><path d="M9 10h6"/></svg> |
| <div>Near convention center, great view, near market</div> |
| </div> |
|
|
| <div class="bullet"> |
| <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#6C4DFF" stroke-width="2"><rect x="7" y="2" width="10" height="18" rx="2"/><circle cx="12" cy="18" r="1"/></svg> |
| <div class="note">Mobile rate</div> |
| </div> |
|
|
| <div class="price-area"> |
| <div class="price">$228</div> |
| <div class="old">$267</div> |
| <div class="sites">13 sites</div> |
| </div> |
|
|
| <button class="cta">View deal</button> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-img"> |
| [IMG: Pink hotel by ocean] |
| <div class="img-overlay-heart"> |
| <svg viewBox="0 0 24 24" width="26" height="26" fill="none" stroke="#E9425E" stroke-width="2"> |
| <path d="M12 21s-6.5-4.3-9-7.8A5.5 5.5 0 0 1 12 5a5.5 5.5 0 0 1 9 8.2C18.5 16.7 12 21 12 21z"/> |
| </svg> |
| </div> |
| <div class="img-dots"> |
| <div class="img-dot"></div> |
| <div class="img-dot dim"></div> |
| <div class="img-dot dim"></div> |
| </div> |
| </div> |
| <div class="card-body"> |
| <div class="badge">Resort</div> |
| <div class="hotel-title">The Royal Hawaiian, a Luxury Collection Resort, Waikiki</div> |
| <div class="rating-row"> |
| <span> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| </span> |
| <span class="label">Excellent <strong>8.7</strong></span> |
| </div> |
| <div class="location">Waikiki</div> |
|
|
| <div class="bullet"> |
| <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"><path d="M21 15a7.5 7.5 0 0 1-15 0V6l7.5-3L21 6v9z"/><path d="M9 10h6"/></svg> |
| <div>Near convention center, near shopping, beautiful beach</div> |
| </div> |
|
|
| <div class="price-area"> |
| <div class="price" style="color:#202124">$360</div> |
| <div class="sites">13 sites</div> |
| </div> |
|
|
| <button class="cta">View deal</button> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-img"> |
| [IMG: Hotel suite city view] |
| <div class="img-overlay-heart"> |
| <svg viewBox="0 0 24 24" width="26" height="26" fill="none" stroke="#E9425E" stroke-width="2"> |
| <path d="M12 21s-6.5-4.3-9-7.8A5.5 5.5 0 0 1 12 5a5.5 5.5 0 0 1 9 8.2C18.5 16.7 12 21 12 21z"/> |
| </svg> |
| </div> |
| <div class="img-dots"> |
| <div class="img-dot"></div> |
| <div class="img-dot dim"></div> |
| <div class="img-dot dim"></div> |
| </div> |
| </div> |
| <div class="card-body"> |
| <div class="hotel-title">The Ritz-Carlton Residences, Waikiki Beach</div> |
| <div class="rating-row"> |
| <span> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| <svg class="star" viewBox="0 0 24 24"><path d="M12 .9l3.1 6.3 7 1-5 4.9 1.2 7-6.3-3.3-6.3 3.3 1.2-7-5-4.9 7-1L12 .9z"/></svg> |
| </span> |
| <span class="label">Excellent <strong>9.0</strong></span> |
| </div> |
| <div class="location">Waikiki</div> |
|
|
| <div class="bullet"> |
| <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#5f6368" stroke-width="2"><path d="M21 15a7.5 7.5 0 0 1-15 0V6l7.5-3L21 6v9z"/><path d="M9 10h6"/></svg> |
| <div>Near convention center, great view, near shopping</div> |
| </div> |
|
|
| <div class="price-area"> |
| <div class="price" style="color:#202124">$541</div> |
| <div class="sites">13 sites</div> |
| </div> |
|
|
| <button class="cta">View deal</button> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="sticky"> |
| <div class="pill"> |
| <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2"><path d="M3 10l9-7 9 7v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3z"/><path d="M9 21V9h6v12"/></svg> |
| <div>Map view</div> |
| </div> |
| <div class="divider-v"></div> |
| <div class="pill"> |
| <svg class="svg" viewBox="0 0 24 24" fill="none" stroke="#FFFFFF" stroke-width="2"><path d="M4 6h16M6 12h12M8 18h8"/></svg> |
| <div>Filters</div> |
| </div> |
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
|
|
| </div> |
| </body> |
| </html> |