HTML Minifier

Removes extra whitespace and comments from HTML. This tool is intended for quick cleanup and learning purposes — not a replacement for production build tools such as Vite or Webpack.

Example

This tool removes whitespace and comments only.
For production use, consider a dedicated build tool such as Vite, Webpack, or a CDN-level minifier.

Input:  <div>  <p> Hello </p>  </div>
Output: <div><p> Hello </p></div>