Leistungen
EA Produkte
Über uns
Projekte
Digital Pulse
Kontakt
EN
Termin buchen
Anfragen
Leistungen
EA Produkte
Über uns
Projekte
Digital Pulse
Kontakt
Sprache:
DE
Anfragen
Tools
HTML Viewer
Kopieren
Leeren
Im Tab öffnen
Vollseite
Code
Vorschau
Kopieren
Leeren
Im Tab öffnen
Vollseite
Code
46 Zeilen
<!DOCTYPE html> <html lang="de"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Meine Seite</title> <style> body { margin: 0; font-family: system-ui, sans-serif; background: #0f0f0f; color: #f0f0f0; display: flex; align-items: center; justify-content: center; min-height: 100vh; } .card { text-align: center; padding: 3rem; border: 1px solid #2a2a2a; border-radius: 1rem; max-width: 480px; } h1 { font-size: 2rem; margin: 0 0 1rem; } p { color: #888; line-height: 1.6; margin: 0 0 1.5rem; } button { background: #b34a22; color: #fff; border: none; padding: .75rem 2rem; border-radius: .5rem; font-size: 1rem; cursor: pointer; } button:hover { opacity: .85; } </style> </head> <body> <div class="card"> <h1>🚀 Hallo Welt</h1> <p>Bearbeite den HTML-Code links — die Vorschau aktualisiert sich live.</p> <button onclick="this.textContent='✓ Geklickt!'">Los geht's</button> </div> </body> </html>
Vorschau