| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Finding distance and displacement from graphs - Practice</title> |
| <style> |
| body { |
| margin: 0; |
| padding: 0; |
| background: transparent; |
| font-family: Arial, Helvetica, sans-serif; |
| } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #0D2143; |
| color: #ffffff; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 90px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 0 36px; |
| box-sizing: border-box; |
| font-size: 32px; |
| letter-spacing: 0.5px; |
| opacity: 0.95; |
| } |
| .status-right { |
| display: flex; |
| gap: 24px; |
| align-items: center; |
| } |
| .icon { |
| width: 36px; |
| height: 36px; |
| } |
| |
| |
| .header { |
| position: absolute; |
| top: 110px; |
| left: 40px; |
| right: 40px; |
| } |
| .back-row { |
| display: flex; |
| align-items: center; |
| gap: 22px; |
| } |
| .back-btn { |
| width: 48px; |
| height: 48px; |
| } |
| .page-title { |
| margin-top: 18px; |
| max-width: 860px; |
| font-size: 48px; |
| line-height: 1.25; |
| font-weight: 700; |
| } |
| |
| |
| .content { |
| position: absolute; |
| top: 460px; |
| left: 60px; |
| right: 60px; |
| } |
| .main-heading { |
| font-size: 72px; |
| font-weight: 800; |
| margin-bottom: 22px; |
| } |
| .subtext { |
| font-size: 36px; |
| color: #cfe1ff; |
| margin-bottom: 40px; |
| } |
| .meta { |
| font-size: 40px; |
| font-weight: 600; |
| } |
| |
| |
| .cta { |
| position: absolute; |
| bottom: 220px; |
| left: 80px; |
| width: 920px; |
| height: 120px; |
| background: #ffffff; |
| color: #2F5BFF; |
| border-radius: 28px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 46px; |
| font-weight: 700; |
| box-shadow: 0 10px 24px rgba(0,0,0,0.35); |
| } |
| |
| |
| .shape-left, .shape-right { |
| position: absolute; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| color: #757575; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| text-align: center; |
| } |
| .shape-left { |
| width: 360px; |
| height: 360px; |
| left: 0; |
| bottom: 60px; |
| border-radius: 28px; |
| } |
| .shape-right { |
| width: 340px; |
| height: 340px; |
| right: 0; |
| bottom: 140px; |
| border-radius: 24px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left">9:11</div> |
| <div class="status-right"> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path fill="#ffffff" d="M12 18.5c.7 0 1.3.6 1.3 1.3s-.6 1.3-1.3 1.3-1.3-.6-1.3-1.3.6-1.3 1.3-1.3zm-4.5-3.9c2.5-2.3 6.5-2.3 9 0l1.1-1.2c-3.2-2.9-8-2.9-11.2 0l1.1 1.2zm-3.2-3.4c4-3.7 10.4-3.7 14.4 0l1.2-1.4C15.7 5.6 8.3 5.6 3.1 9.8l1.2 1.4z"/> |
| </svg> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <rect x="3" y="7" width="16" height="10" rx="2" fill="#ffffff"/> |
| <rect x="19.5" y="10" width="2.5" height="4" rx="1" fill="#ffffff"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="back-row"> |
| <svg class="back-btn" viewBox="0 0 24 24"> |
| <path fill="#ffffff" d="M15.5 4.5L7 12l8.5 7.5-1.5 2L3.5 12 14 2.5l1.5 2z"/> |
| </svg> |
| <div style="font-size:32px; color:#cfe1ff;">Back</div> |
| </div> |
| <div class="page-title">Finding distance and displacement from graphs</div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="main-heading">Ready to practice?</div> |
| <div class="subtext">Okay, show us what you can do!</div> |
| <div class="meta">4 questions</div> |
| </div> |
|
|
| |
| <div class="shape-left">[IMG: Friendly shape illustration]</div> |
| <div class="shape-right">[IMG: Friendly shape illustration]</div> |
|
|
| |
| <div class="cta">Let's go</div> |
|
|
| </div> |
| </body> |
| </html> |