Created
February 22, 2026 19:07
-
-
Save ibrahimyilmaz7/4e05d625cec113e292a9f8ed4951d8f9 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 Support</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; } | |
| .email { font-weight: 600; color: var(--text); } | |
| </style> | |
| </head> | |
| <body> | |
| <main class="wrap"> | |
| <section class="card"> | |
| <h1>Wortschatz Support</h1> | |
| <p>Du brauchst Hilfe mit <strong>Wortschatz</strong>? Wir helfen dir gerne weiter.</p> | |
| <h2>Kontakt</h2> | |
| <p> | |
| E-Mail: | |
| <a class="email" href="mailto:wortschatz.app@proton.me">wortschatz.app@proton.me</a><br /> | |
| Du kannst uns auf Deutsch oder Englisch schreiben. | |
| </p> | |
| <h2>Bitte in der Nachricht angeben</h2> | |
| <p>Damit wir dir schneller helfen können, sende bitte:</p> | |
| <ul> | |
| <li>App-Version (Wortschatz Version)</li> | |
| <li>iPhone-Modell</li> | |
| <li>iOS-Version</li> | |
| <li>App-Sprache</li> | |
| <li>Kurze Problembeschreibung</li> | |
| <li>Screenshots (wenn möglich)</li> | |
| </ul> | |
| <h2>Häufige Themen</h2> | |
| <ul> | |
| <li>Suche und Filter in der Wortliste</li> | |
| <li>Gespeicherte Wörter und Sammlungen</li> | |
| <li>Quiz, Lernfortschritt und Statistiken</li> | |
| <li>Backup/Restore oder Datenübertragung</li> | |
| <li>App-Verhalten, Fehler oder Abstürze</li> | |
| <li>Feedback und Funktionswünsche</li> | |
| </ul> | |
| <h2>Datenschutz</h2> | |
| <p> | |
| Wenn du Fragen zum Datenschutz hast, kontaktiere uns bitte direkt per E-Mail. | |
| </p> | |
| </section> | |
| </main> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment