Skip to content
OmniTool
⌘K
History
#
HTML Formatter
HTML Input
<!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: sans-serif; margin: 0; padding: 20px; } .container { max-width: 800px; margin: 0 auto; } h1 { color: #333; } </style> </head> <body> <div class="container"> <h1>Hello World</h1> <p>This is a paragraph with some text in it.</p> <ul> <li>Item one</li> <li>Item two</li> <li>Item three</li> </ul> </div> </body> </html>
561 bytes
Collapse newlines
Format
Formatted HTML