HTML Minifier / Beautifier

Beautify messy HTML into a clean, indented structure, or minify it down by stripping comments and extra whitespace.

Input HTML

Output

<!DOCTYPE html>
<html>

<head>
  <title>Example</title>
</head>

<body>
  <!-- main content -->
  <div class="card">
    <h1>Hello</h1>
    <p>Welcome to the page.</p>
  </div>
</body>

</html>

Example input

<div><h1>Hi</h1></div>

Example output

<div> <h1>Hi</h1> </div>