Skip to content

HTML Minifier — Fast, Safe Online HTML Compression

Compress and minify HTML instantly in the browser with safe defaults, optional inline minification, and a preview of byte savings.

Updated

What is the HTML Minifier — Fast, Safe Online HTML Compression?

How it works

Examples

Basic HTML compression

<!doctype html>
<html>
  <head><!-- dev comment --><title>App</title></head>
  <body>
    <div class="container">Hello world</div>
  </body>
</html>
<!doctype html><html><head><title>App</title></head><body><div class="container">Hello world</div></body></html>

Preserve templates safely

<div data-value="" aria-label="btn"> <!-- template marker --> <button disabled="disabled">Click</button></div>
<div data-value="" aria-label="btn"> <button disabled>Click</button></div>

Inline preview minification

<style>/* long comment */ body {  margin:  0;  }</style><script>/* comment */ const x = 1; // note</script>
<style>body { margin: 0; }</style><script>const x = 1;</script>

Frequently asked questions