| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Mondly Onboarding Mock</title> |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet"> |
| <style> |
| body { margin:0; padding:0; background:transparent; font-family: 'Poppins', Arial, sans-serif; } |
| #render-target { |
| width:1080px; height:2400px; |
| position:relative; overflow:hidden; |
| background: linear-gradient(180deg, #53A8FF 0%, #4C79F2 35%, #4B55E8 65%, #4A33C9 100%); |
| color:#fff; |
| } |
| .content { position:absolute; left:48px; right:48px; } |
| |
| .status-bar { |
| top:20px; height:72px; display:flex; align-items:center; justify-content:space-between; |
| padding:0 24px; font-size:34px; font-weight:600; letter-spacing:1px; opacity:0.95; |
| } |
| .status-icons { display:flex; align-items:center; gap:26px; } |
| .icon { width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center; opacity:0.95; } |
| .icon svg { width:32px; height:32px; fill:#ffffff; } |
| |
| .logo-wrap { top:160px; text-align:center; } |
| .brand { |
| font-size:144px; font-weight:300; letter-spacing:4px; |
| } |
| .brand .globe { |
| display:inline-block; width:110px; height:110px; border-radius:55px; |
| border:3px solid rgba(255,255,255,0.9); margin:0 16px; position:relative; top:8px; |
| } |
| .globe::before { |
| content:"🌍"; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); |
| font-size:70px; line-height:1; |
| } |
| .sub { font-size:40px; margin-top:12px; opacity:0.9; } |
| |
| .section-title { |
| font-size:54px; font-weight:700; margin-top:140px; margin-bottom:26px; |
| } |
| |
| .select-card { |
| background: rgba(255,255,255,0.18); |
| border-radius:56px; height:170px; |
| display:flex; align-items:center; justify-content:space-between; |
| padding:0 40px; backdrop-filter: blur(2px); |
| } |
| .select-left { display:flex; align-items:center; gap:30px; } |
| .flag { |
| width:96px; height:96px; border-radius:48px; |
| background:#E0E0E0; border:1px solid #BDBDBD; display:flex; align-items:center; justify-content:center; |
| color:#757575; font-size:28px; font-weight:600; |
| } |
| .select-text { font-size:56px; font-weight:600; } |
| .chev { width:60px; height:60px; } |
| .chev svg { width:60px; height:60px; stroke:#fff; stroke-width:8; fill:none; opacity:0.9; } |
| |
| .levels { |
| margin-top:90px; background: rgba(255,255,255,0.18); border-radius:60px; height:180px; |
| display:flex; align-items:center; padding:0 24px; gap:24px; |
| } |
| .level { |
| flex:1; height:140px; border-radius:56px; |
| display:flex; align-items:center; justify-content:center; gap:14px; |
| color:rgba(255,255,255,0.85); font-size:46px; font-weight:600; border:2px solid rgba(255,255,255,0.35); |
| } |
| .level.selected { |
| background: rgba(90,223,170,0.18); |
| border:6px solid #7CF0C4; |
| color:#ffffff; |
| } |
| .bubble { width:52px; height:52px; border:4px solid currentColor; border-radius:50%; opacity:0.9; } |
| .bubble.stack::after { |
| content:""; width:40px; height:40px; border:4px solid currentColor; border-radius:50%; |
| position:absolute; transform:translate(18px, -10px); opacity:0.7; |
| } |
| .bubble.stack2::after { |
| content:""; width:36px; height:36px; border:4px solid currentColor; border-radius:50%; |
| position:absolute; transform:translate(18px, -12px); opacity:0.7; |
| } |
| |
| .legal { |
| margin-top:380px; text-align:center; font-size:36px; line-height:52px; color:rgba(255,255,255,0.95); |
| } |
| .legal em { font-style:italic; } |
| .legal a { color:#D8D9FF; text-decoration:underline; } |
| |
| .btn-ring { |
| margin-top:48px; padding:14px; border-radius:64px; |
| background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(120,70,220,0.6) 100%); |
| } |
| .btn-primary { |
| height:140px; border-radius:60px; |
| background: linear-gradient(180deg, #F05BCF 0%, #B447F2 100%); |
| display:flex; align-items:center; justify-content:center; |
| font-size:52px; font-weight:700; color:#fff; box-shadow:0 10px 30px rgba(0,0,0,0.25); |
| } |
| .btn-outline { |
| height:140px; border-radius:60px; margin-top:28px; |
| border:4px solid rgba(255,255,255,0.6); color:#fff; background: transparent; |
| display:flex; align-items:center; justify-content:center; font-size:48px; font-weight:700; |
| } |
| |
| .home-indicator { |
| position:absolute; left:50%; transform:translateX(-50%); |
| bottom:24px; width:360px; height:16px; border-radius:10px; background:rgba(255,255,255,0.5); |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| <div class="content status-bar"> |
| <div class="status-time">6:41</div> |
| <div class="status-icons"> |
| <span class="icon"> |
| <svg viewBox="0 0 24 24"><path d="M12 2l7 7-7 13L5 9l7-7z"/></svg> |
| </span> |
| <span class="icon"> |
| <svg viewBox="0 0 24 24"><rect x="4" y="6" width="16" height="12" rx="3" ry="3"/></svg> |
| </span> |
| <span class="icon"> |
| <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="9"/></svg> |
| </span> |
| <span class="icon"> |
| <svg viewBox="0 0 24 24"><path d="M4 10h12l-4-4M4 14h12l-4 4" stroke="#fff" stroke-width="2" fill="none"/></svg> |
| </span> |
| <span class="icon">•</span> |
| <span class="icon"> |
| <svg viewBox="0 0 24 24"><path d="M3 14h18M3 10h12" stroke="#fff" stroke-width="2"/></svg> |
| </span> |
| <span class="icon"> |
| <svg viewBox="0 0 24 24"><rect x="4" y="6" width="14" height="12" rx="3" ry="3"/><rect x="6" y="8" width="10" height="8" fill="#fff"/></svg> |
| </span> |
| <div style="font-size:30px;">100%</div> |
| </div> |
| </div> |
|
|
| <div class="content logo-wrap"> |
| <div class="brand"> |
| m<span class="globe"></span>ndly |
| </div> |
| <div class="sub">by Pearson</div> |
| </div> |
|
|
| <div class="content" style="top:680px;"> |
| <div class="section-title">I speak</div> |
| <div class="select-card"> |
| <div class="select-left"> |
| <div class="flag">[IMG: UK Flag]</div> |
| <div class="select-text">English</div> |
| </div> |
| <div class="chev"> |
| <svg viewBox="0 0 24 24"><path d="M5 9l7 7 7-7" /></svg> |
| </div> |
| </div> |
|
|
| <div class="section-title" style="margin-top:70px;">I want to learn</div> |
| <div class="select-card"> |
| <div class="select-left"> |
| <div class="flag">[IMG: Brazil Flag]</div> |
| <div class="select-text">Portuguese</div> |
| </div> |
| <div class="chev"> |
| <svg viewBox="0 0 24 24"><path d="M5 9l7 7 7-7" /></svg> |
| </div> |
| </div> |
|
|
| <div class="levels"> |
| <div class="level selected"> |
| <div class="bubble"></div> |
| Beginner |
| </div> |
| <div class="level"> |
| <div class="bubble stack"></div> |
| Intermediate |
| </div> |
| <div class="level"> |
| <div class="bubble stack2"></div> |
| Advanced |
| </div> |
| </div> |
| </div> |
|
|
| <div class="content" style="top:1460px;"> |
| <div class="legal"> |
| By clicking <em>"agree and start tutorial"</em>, you indicate consent<br> |
| to the <a href="#">Terms and Conditions</a> and confirm you've read the<br> |
| <a href="#">Privacy Policy</a>. |
| </div> |
|
|
| <div class="btn-ring"> |
| <div class="btn-primary">Agree and Start Tutorial</div> |
| </div> |
|
|
| <div class="btn-outline">Log in / Create an account</div> |
| </div> |
|
|
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |