HTML Flow
100% local — nothing sent to any server
Clear
Copy
Full Preview
HTML
671 chars
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>My Page</title> <style> body { font-family: system-ui, sans-serif; display: flex; align-items: center; justify-content: center; min-height: 100vh; margin: 0; background: linear-gradient(135deg, #0f172a, #134e4a); color: #f1f5f9; } h1 { font-size: 2.5rem; } p { color: #94a3b8; } </style> </head> <body> <div style="text-align:center"> <h1>Hello, HTML Flow!</h1> <p>Paste your HTML on the left to preview it here.</p> </div> </body> </html>
Preview
live