$
devtools
Search tools…
⌘K
All tools
/
Formatters
HTML Formatter
New
Pretty-print or minify HTML. Proper indentation for nested tags and inline elements.
format
minify
Indent
2
4
Input HTML
<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><title>Hello</title></head> <body> <div class="container"><h1>Hello, World!</h1><p>This is <strong>bold</strong> and <em>italic</em> text.</p><ul><li>Item one</li><li>Item two</li></ul></div> </body> </html>
Output
Copy
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title> Hello </title> </head> <body> <div class="container"> <h1> Hello, World! </h1> <p> This is<strong> bold</strong> and<em> italic</em> text. </p> <ul> <li> Item one </li> <li> Item two </li> </ul> </div> </body> </html>