| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Women - Home</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| font-family: Arial, Helvetica, sans-serif; |
| color: #111; |
| } |
| |
| |
| .statusbar { |
| height: 110px; |
| padding: 24px 36px 0 36px; |
| box-sizing: border-box; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #333; |
| font-size: 34px; |
| } |
| .status-left { display: flex; align-items: center; gap: 18px; } |
| .status-dots { display: flex; gap: 12px; align-items: center; } |
| .dot { width: 18px; height: 18px; background: #1a1a1a; border-radius: 50%; display: inline-block; } |
| .status-right { display: flex; align-items: center; gap: 20px; } |
| .icon-sm svg { width: 36px; height: 36px; fill: #333; } |
| |
| |
| .topbar { |
| height: 120px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .topbar-left, .topbar-right { display: flex; align-items: center; gap: 28px; } |
| .menu-icon svg, .heart-icon svg, .search-icon svg, .chev-icon svg { width: 44px; height: 44px; } |
| .title { |
| font-weight: 700; |
| font-size: 44px; |
| letter-spacing: 0.5px; |
| } |
| |
| |
| .tabs { |
| height: 110px; |
| display: flex; |
| align-items: flex-end; |
| padding: 0 36px; |
| border-bottom: 1px solid #eee; |
| gap: 48px; |
| } |
| .tab { |
| font-size: 34px; |
| color: #444; |
| padding: 0 4px 24px 4px; |
| position: relative; |
| } |
| .tab.active { color: #111; font-weight: 700; } |
| .tab.active::after { |
| content: ""; |
| position: absolute; |
| left: 0; right: 0; bottom: 0; |
| height: 6px; background: #2D63FF; border-radius: 3px; |
| } |
| .tab .blue-dot { |
| width: 14px; height: 14px; background: #2D63FF; border-radius: 50%; |
| position: absolute; right: -18px; top: 14px; |
| } |
| |
| |
| .promo { |
| margin: 18px 0 10px 0; |
| padding: 0 36px; |
| } |
| .promo-box { |
| width: 100%; |
| height: 240px; |
| background: #F4F3EF; |
| border: 1px solid #E0E0E0; |
| display: flex; align-items: center; justify-content: center; |
| color: #333; |
| font-size: 36px; |
| text-align: center; |
| border-radius: 10px; |
| } |
| |
| |
| .grid { |
| padding: 20px 36px 0 36px; |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 36px; |
| } |
| .card-image { |
| width: 100%; |
| height: 560px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| border-radius: 4px; |
| display: flex; align-items: center; justify-content: center; |
| color: #666; |
| font-size: 30px; |
| text-align: center; |
| padding: 12px; |
| box-sizing: border-box; |
| } |
| .card-title { |
| text-align: center; |
| margin-top: 22px; |
| font-weight: 800; |
| font-size: 44px; |
| letter-spacing: 1px; |
| } |
| .card-sub { |
| text-align: center; |
| margin-top: 10px; |
| color: #7A7A7A; |
| font-size: 32px; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| left: 50%; |
| transform: translateX(-50%); |
| bottom: 26px; |
| width: 420px; |
| height: 14px; |
| background: #C7C7C7; |
| border-radius: 8px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="statusbar"> |
| <div class="status-left"> |
| <div>8:55</div> |
| <div class="status-dots"> |
| <span class="dot" style="background:#BDBDBD;"></span> |
| <span class="dot" style="background:#1a1a1a;"></span> |
| <span class="dot" style="background:#1a1a1a;"></span> |
| <span class="dot" style="background:#1a1a1a;"></span> |
| <span style="width:10px;height:10px;background:#999;border-radius:50%;display:inline-block;"></span> |
| </div> |
| </div> |
| <div class="status-right"> |
| <span class="icon-sm" title="Wi-Fi"> |
| <svg viewBox="0 0 24 24"><path d="M2 8c5.5-4.7 14.5-4.7 20 0l-2 2c-4.1-3.5-11.9-3.5-16 0L2 8zm4 4c3.2-2.7 8.8-2.7 12 0l-2 2c-2.3-1.9-5.7-1.9-8 0l-2-2zm4 4c1.1-.9 2.9-.9 4 0l-2 2-2-2z"/></svg> |
| </span> |
| <span class="icon-sm" title="Battery"> |
| <svg viewBox="0 0 24 24"><path d="M17 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2v2H3V4h14v2zM5 6v12h10V6H5z"/></svg> |
| </span> |
| </div> |
| </div> |
|
|
| |
| <div class="topbar"> |
| <div class="topbar-left"> |
| <span class="menu-icon" aria-label="menu"> |
| <svg viewBox="0 0 24 24"><path d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg> |
| </span> |
| <div class="title">WOMEN</div> |
| <span class="chev-icon"> |
| <svg viewBox="0 0 24 24"><path d="M7 9l5 5 5-5H7z"/></svg> |
| </span> |
| </div> |
| <div class="topbar-right"> |
| <span class="heart-icon" aria-label="favorites"> |
| <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.9-9.5-8C-0.7 9.1 1.2 4 6 4c2.2 0 3.6 1.2 4 2 0.4-0.8 1.8-2 4-2 4.8 0 6.7 5.1 3.5 9-2.5 3.1-9.5 8-9.5 8z" fill="none" stroke="#111" stroke-width="2"/></svg> |
| </span> |
| <span class="search-icon" aria-label="search"> |
| <svg viewBox="0 0 24 24"><path d="M10 2a8 8 0 105.3 14l5 5 1.4-1.4-5-5A8 8 0 0010 2zm0 2a6 6 0 110 12 6 6 0 010-12z"/></svg> |
| </span> |
| </div> |
| </div> |
|
|
| |
| <div class="tabs"> |
| <div class="tab active">HOME</div> |
| <div class="tab">CATEGORIES</div> |
| <div class="tab">NEW IN</div> |
| <div class="tab">FOR YOU <span class="blue-dot"></span></div> |
| </div> |
|
|
| |
| <div class="promo"> |
| <div class="promo-box">[IMG: Promo banner - The up-to-70%-off edit • Black Friday starts here]</div> |
| </div> |
|
|
| |
| <div class="grid"> |
|
|
| |
| <div class="card"> |
| <div class="card-image">[IMG: Nighttime outfit – blazer and bralette on a promenade]</div> |
| <div class="card-title">THE PARTYWEAR DROP</div> |
| <div class="card-sub">Ft. 'who is THAT' energy</div> |
| </div> |
|
|
| <div class="card"> |
| <div class="card-image">[IMG: Cozy pink faux-fur coat and knit beanie in snowy scene]</div> |
| <div class="card-title">FROSTY 'FITS</div> |
| <div class="card-sub">Stay snug</div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-image">[IMG: Two friends in lounge – sequined dress and relaxed denim]</div> |
| <div class="card-title">TOPSHOP</div> |
| <div class="card-sub">Peep the next phase</div> |
| </div> |
|
|
| <div class="card"> |
| <div class="card-image">[IMG: Gift shop shelves with hats, skincare, and colorful boxes]</div> |
| <div class="card-title">THE GIFT SHOP</div> |
| <div class="card-sub">Secure the goods early</div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |