Shrink HTML safely — protects whitespace-sensitive regions and preserves the spaces between inline elements.
Ctrl + Enter to run
Minifying markup removes the whitespace between tags, redundant attribute quotes and comments. On a large document this is a real saving before compression and a modest one after it, since gzip handles repeated whitespace well.
One caution specific to HTML: whitespace between inline elements is meaningful. Collapsing it can close up the gap between two `<a>` tags or change how `inline-block` items sit next to each other, so check the rendered result rather than trusting the byte count alone.