Skip to content
OmniTool
⌘K
History
</>
HTML Preview
Editor
Preview
Split
605 chars / 20 lines
Copy
Render
HTML Source
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Hello World</title> <style> body { font-family: system-ui, sans-serif; padding: 2rem; max-width: 600px; margin: 0 auto; } h1 { color: #2563eb; } .card { background: #f1f5f9; border-radius: 12px; padding: 1.5rem; margin-top: 1rem; } </style> </head> <body> <h1>Hello, World!</h1> <p>This is a sample HTML preview.</p> <div class="card"> <p>You can edit the HTML in the editor tab and see the result here.</p> </div> </body> </html>