HTML Formatter

๐Ÿค– Agent Ready

Beautify or minify HTML code โ€” runs entirely in your browser, no data sent anywhere.

HTML Input
Beautified Output
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>
      My Page
    </title>
  </head>
  <body>
    <header>
      <h1>
        Hello World
      </h1>
      <nav>
        <a href="/">
        Home
        </a>
        <a href="/about">
        About
        </a>
      </nav>
    </header>
    <main>
      <p>
        Welcome to my
        <strong>
        awesome
        </strong>
        page.
      </p>
    </main>
  </body>
</html>
Input: 352 charsOutput: 545 chars