Minify, Unminify & Beautify HTML Online — Free HTML Minifier
Minify, unminify and beautify your HTML code instantly to reduce your file sizes and improve your website performance. Our free online HTML minifier removes unnecessary whitespace, comments and optimizes attributes. Instant and secure processing, no registration required.
Loading...
HTML Minification
Compressing HTML files by removing whitespace, comments and unnecessary characters
Basic example
Input HTML
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h1>Hello World</h1>
<p>This is a paragraph.</p>
</body>
</html>
Minified HTML
<!DOCTYPE html><html><head><title>My Page</title></head><body><h1>Hello World</h1><p>This is a paragraph.</p></body></html>
Minification options
Remove Comments
Removes all HTML comments from code
Comparison with/without option:
Original code
<div>
<!-- This is a comment -->
<p>Content</p>
<!-- Another comment -->
</div>
With removeComments: true
<div><p>Content</p></div>
With removeComments: false
<div><!-- This is a comment --><p>Content</p><!-- Another comment --></div>
Collapse Whitespace
Collapses multiple whitespace characters into single spaces
Comparison with/without option:
Original code
<div>
<p> Multiple spaces </p>
<span> Text </span>
</div>
With collapseWhitespace: true
<div><p> Multiple spaces </p><span> Text </span></div>
With collapseWhitespace: false
<div><p> Multiple spaces </p><span> Text </span></div>