Services
EA Produkte
About
Projects
Digital Pulse
Contact
DE
Book Call
Get in touch
Services
EA Produkte
About
Projects
Digital Pulse
Contact
Language:
EN
Get in touch
Tools
HTML Viewer
Copy
Clear
Open in tab
Full page
Code
Preview
Copy
Clear
Open in tab
Full page
Code
46 lines
<!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>
Preview