| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Class 11 Physics (India) UI</title> |
| <style> |
| body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif; } |
| #render-target { |
| width:1080px; height:2400px; |
| position:relative; overflow:hidden; |
| background:#ffffff; |
| border-radius:0; |
| box-shadow:none; |
| } |
| |
| .top-bar { |
| position:absolute; left:0; top:0; width:100%; |
| height:220px; background:#0f2b57; color:#fff; |
| } |
| .status { |
| height:80px; display:flex; align-items:center; justify-content:space-between; |
| padding:0 36px; font-size:34px; letter-spacing:0.5px; |
| opacity:0.95; |
| } |
| .status .right-icons { display:flex; align-items:center; gap:26px; } |
| .app-bar { |
| height:140px; display:flex; align-items:center; |
| padding:0 36px; gap:24px; |
| } |
| .title { font-size:46px; font-weight:700; color:#fff; } |
| .back-btn { width:72px; height:72px; display:flex; align-items:center; justify-content:center; } |
| .back-btn svg { width:44px; height:44px; fill:none; stroke:#fff; stroke-width:6; } |
| |
| .content { |
| position:absolute; left:0; top:220px; width:100%; height:2060px; |
| background:#ffffff; |
| overflow:hidden; |
| } |
| .section { |
| padding:30px 42px 12px 42px; |
| } |
| .section-header { |
| display:flex; align-items:center; gap:22px; margin-bottom:10px; |
| } |
| .icon-circle { |
| width:96px; height:96px; border-radius:50%; background:#69a36c; display:flex; align-items:center; justify-content:center; |
| } |
| .icon-circle svg { width:64px; height:64px; } |
| .section-title { |
| font-size:42px; font-weight:700; color:#222; |
| line-height:1.2; |
| } |
| .list { margin-top:18px; } |
| .list-item { |
| font-size:38px; color:#707070; line-height:72px; |
| } |
| .divider { |
| height:16px; background:#f0f0f0; margin:18px 0; |
| border-top:1px solid #e4e4e4; border-bottom:1px solid #e4e4e4; |
| } |
| |
| .bottom-nav { |
| position:absolute; left:0; bottom:0; width:100%; height:180px; background:#ffffff; |
| border-top:1px solid #e0e0e0; |
| display:flex; align-items:center; justify-content:space-around; |
| } |
| .nav-item { width:260px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:#7a7a7a; } |
| .nav-item svg { width:64px; height:64px; stroke:#888; fill:none; stroke-width:6; } |
| .nav-item.active { color:#0f2b57; } |
| .nav-item.active svg { stroke:#0f2b57; } |
| .gesture { |
| position:absolute; left:50%; transform:translateX(-50%); |
| bottom:200px; width:420px; height:16px; background:#d8d8d8; border-radius:8px; opacity:0.8; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="top-bar"> |
| <div class="status"> |
| <div>9:12</div> |
| <div class="right-icons"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M2 8c5-4 15-4 20 0" /> |
| <path d="M5 12c3-2 11-2 14 0" /> |
| <path d="M9 16c2-1 4-1 6 0" /> |
| <circle cx="12" cy="20" r="1.6" fill="#fff"></circle> |
| </svg> |
| |
| <svg viewBox="0 0 32 20"> |
| <rect x="2" y="4" width="24" height="12" rx="2" ry="2" fill="none" stroke="#fff" stroke-width="2"></rect> |
| <rect x="4" y="6" width="18" height="8" fill="#fff"></rect> |
| <rect x="26" y="7" width="4" height="6" rx="1" ry="1" fill="#fff"></rect> |
| </svg> |
| </div> |
| </div> |
| <div class="app-bar"> |
| <div class="back-btn"> |
| <svg viewBox="0 0 24 24"><path d="M15 5l-7 7 7 7"/></svg> |
| </div> |
| <div class="title">Class 11 Physics (India)</div> |
| </div> |
| </div> |
|
|
| |
| <div class="content"> |
| |
| <div class="section"> |
| <div class="section-header"> |
| <div class="icon-circle"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="2.5" fill="#e9f6ea"></circle> |
| <ellipse cx="12" cy="12" rx="9" ry="4.5" fill="none" stroke="#e9f6ea" stroke-width="2"></ellipse> |
| <ellipse cx="12" cy="12" rx="4.5" ry="9" fill="none" stroke="#e9f6ea" stroke-width="2" transform="rotate(60 12 12)"></ellipse> |
| <ellipse cx="12" cy="12" rx="4.5" ry="9" fill="none" stroke="#e9f6ea" stroke-width="2" transform="rotate(-60 12 12)"></ellipse> |
| </svg> |
| </div> |
| <div class="section-title">Basic math concepts for physics (Prerequisite)</div> |
| </div> |
| <div class="list"> |
| <div class="list-item">The graphs of sine, cosine, and tangent</div> |
| <div class="list-item">Basic trigonometric identities</div> |
| <div class="list-item">Evaluating functions</div> |
| <div class="list-item">Inputs and outputs of a function</div> |
| <div class="list-item">Maximum and minimum points</div> |
| <div class="list-item">Intervals where a function is positive, negative,<br/>increasing, or decreasing</div> |
| <div class="list-item">Interpreting features of graphs</div> |
| </div> |
| </div> |
|
|
| <div class="divider"></div> |
|
|
| |
| <div class="section"> |
| <div class="section-header"> |
| <div class="icon-circle"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="2.5" fill="#e9f6ea"></circle> |
| <ellipse cx="12" cy="12" rx="9" ry="4.5" fill="none" stroke="#e9f6ea" stroke-width="2"></ellipse> |
| <ellipse cx="12" cy="12" rx="4.5" ry="9" fill="none" stroke="#e9f6ea" stroke-width="2" transform="rotate(60 12 12)"></ellipse> |
| <ellipse cx="12" cy="12" rx="4.5" ry="9" fill="none" stroke="#e9f6ea" stroke-width="2" transform="rotate(-60 12 12)"></ellipse> |
| </svg> |
| </div> |
| <div class="section-title">Differentiation for physics (Prerequisite)</div> |
| </div> |
| <div class="list"> |
| <div class="list-item">Slope</div> |
| <div class="list-item">Introduction to differential calculus</div> |
| <div class="list-item">Secant lines</div> |
| <div class="list-item">Limit basics</div> |
| <div class="list-item">Derivative as a limit</div> |
| <div class="list-item">Using the formal definition of derivative</div> |
| <div class="list-item">Derivative as a function</div> |
| <div class="list-item">Basic differentiation rules</div> |
| <div class="list-item">Power rule</div> |
| <div class="list-item">Polynomial functions differentiation</div> |
| <div class="list-item">Sine & cosine derivatives</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="gesture"></div> |
|
|
| |
| <div class="bottom-nav"> |
| <div class="nav-item active"> |
| <svg viewBox="0 0 24 24"><path d="M3 10l9-7 9 7v10H6V10z"/><path d="M10 21V13h4v8" stroke="none" fill="none"/></svg> |
| <div>Home</div> |
| </div> |
| <div class="nav-item"> |
| <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="6"></circle><line x1="17" y1="17" x2="22" y2="22" stroke-linecap="round"/></svg> |
| <div>Explore</div> |
| </div> |
| <div class="nav-item"> |
| <svg viewBox="0 0 24 24"><path d="M6 3h12v18l-6-4-6 4z"/></svg> |
| <div>Bookmarks</div> |
| </div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |