HTML Beautifier & Minifier

Reindent tangled HTML to read it, or minify it to ship it — with an optional check for broken tags.

Indent
Validate
Paste or type HTML to format, minify or check it.

Your HTML is formatted, minified and checked in your browser. Nothing is uploaded to BroBroGo.

FAQ

What's the difference between beautify and minify?

Beautify re-indents and spaces out the markup so it's easy to read and edit. Minify does the opposite — it strips the whitespace and comments a browser doesn't need, so the file is smaller and loads faster. Beautify while you work, minify before you ship.

What does turning on validation check?

It flags structural problems a browser would quietly paper over — unclosed or mismatched tags, duplicate ids, repeated attributes and unescaped characters — with the line and column of each. It is a fast structural check, not a full W3C conformance report.

Will minifying change how my page looks?

No — your page renders and behaves exactly the same. Minifying strips whitespace and comments, compresses your inline CSS and JavaScript, and drops optional attribute quotes, keeping only what the browser needs to draw the page identically. Whitespace-sensitive text like preformatted blocks is left untouched.