☰
Home
/
Text & Code
/
HTML Minifier
</>
HTML Minifier
Strip whitespace and comments from HTML
☆
Bookmark
Loading tool…
HTML input
<!DOCTYPE html> <html lang="en"> <head> <!-- Page metadata --> <meta charset="UTF-8" /> <title>My Page</title> </head> <body> <header> <h1>Hello World</h1> <!-- Navigation --> <nav> <a href="/">Home</a> <a href="/about">About</a> </nav> </header> <main> <p> Welcome to my page. This is a paragraph with some whitespace. </p> </main> </body> </html>
Minified
37% smaller · saved 166B
⧉ Copy
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"/><title>My Page</title></head><body><header><h1>Hello World</h1><nav><a href="/">Home</a><a href="/about">About</a></nav></header><main><p> Welcome to my page. This is a paragraph with some whitespace. </p></main></body></html>
452B
Original
286B
Minified
166B (37%)
Saved