NK
able
nav.home
nav.tools
nav.search
nav.blog
nav.contact
HTML Preview
split
code
preview
↺ Refresh
Copy HTML
Reset
HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Preview</title> <style> body { font-family: sans-serif; padding: 2rem; background: #fff; } h1 { color: #6366f1; } p { color: #555; line-height: 1.6; } button { background: #6366f1; color: white; border: none; padding: 8px 20px; border-radius: 8px; cursor: pointer; font-size: 16px; } button:hover { background: #4f46e5; } </style> </head> <body> <h1>Hello from HTML Preview! 👋</h1> <p>Edit the HTML on the left and see instant changes here.</p> <button onclick="alert('It works!')">Click Me</button> </body> </html>
Preview