Loading DevTools...
Command Palette
Search for tools and actions
HTML Editor
Search
Fullscreen
Settings
Loading tool...
HTML Editor
Write, preview, and export HTML
Format
Copy
Download
Templates
Reset
Code
721 characters
<!DOCTYPE html> <html> <head> <title>Welcome To Victory</title> <style> body { font-family: system-ui, sans-serif; padding: 2rem; background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; } .card { background: white; padding: 2rem; border-radius: 1rem; box-shadow: 0 20px 40px rgba(0,0,0,0.2); text-align: center; } h1 { color: #c9a227; margin: 0 0 1rem; } p { color: #666; margin: 0; } </style> </head> <body> <div class="card"> <h1>Welcome To Victory</h1> <p>Edit this HTML and see the result.</p> </div> </body> </html>
Preview