Created
February 23, 2026 22:11
-
-
Save ibrahimyilmaz7/551b053ea90c9abf7baa46f8730cd38e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="de"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width,initial-scale=1" /> | |
| <title>Wortschatz — deine Wörter, deine Welt.</title> | |
| <style> | |
| :root { | |
| --bg: #f7f7f5; | |
| --card: #ffffff; | |
| --text: #1f2937; | |
| --muted: #4b5563; | |
| --accent: #2563eb; | |
| --border: #e5e7eb; | |
| } | |
| * { box-sizing: border-box; } | |
| body { | |
| margin: 0; | |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; | |
| background: var(--bg); | |
| color: var(--text); | |
| line-height: 1.55; | |
| } | |
| .wrap { | |
| max-width: 760px; | |
| margin: 40px auto; | |
| padding: 0 16px; | |
| } | |
| .card { | |
| background: var(--card); | |
| border: 1px solid var(--border); | |
| border-radius: 14px; | |
| padding: 24px; | |
| } | |
| h1 { margin: 0 0 12px; font-size: 1.9rem; } | |
| h2 { margin: 24px 0 8px; font-size: 1.15rem; } | |
| p, li { color: var(--muted); } | |
| ul { margin: 8px 0 0 20px; padding: 0; } | |
| a { color: var(--accent); text-decoration: none; } | |
| a:hover { text-decoration: underline; } | |
| .tagline { color: var(--text); font-weight: 600; } | |
| </style> | |
| </head> | |
| <body> | |
| <main class="wrap"> | |
| <section class="card"> | |
| <h1>Wortschatz</h1> | |
| <p class="tagline">deine Wörter, deine Welt.</p> | |
| <p> | |
| Wortschatz ist eine offline-first App zum Deutschlernen mit Fokus auf | |
| konzentriertes, ablenkungsfreies Lernen. Finde Wörter schnell, speichere | |
| relevante Begriffe und baue Schritt für Schritt deinen Fortschritt aus. | |
| </p> | |
| <h2>Highlights</h2> | |
| <ul> | |
| <li>Über 20.000 deutsche Vokabeleinträge mit schneller Volltextsuche</li> | |
| <li>Wörter in persönlichen Listen und Sammlungen speichern</li> | |
| <li>Lernen mit Quiz, Streak-Tracking und Fortschrittsstatistiken</li> | |
| <li>Wichtige Funktionen auch offline nutzbar</li> | |
| </ul> | |
| <h2>Für nachhaltiges Lernen entwickelt</h2> | |
| <p> | |
| Wortschatz unterstützt dich mit praktischen Werkzeugen für tägliches | |
| Lernen, Wiederholen und langfristiges Behalten. | |
| </p> | |
| <h2>Links</h2> | |
| <p> | |
| Support: | |
| <a href="mailto:wortschatz.app@proton.me">wortschatz.app@proton.me</a><br /> | |
| Datenschutz: | |
| <a href="wortschatz_privacy_de.html">Datenschutzerklärung (Deutsch)</a> | |
| </p> | |
| </section> | |
| </main> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment