HTML Minifier

Compress or beautify HTML code.

Input HTML

Output

Welcome

This is a sample HTML page.

`; }); copyBtn.addEventListener('click', function() { if (!output.value) return; navigator.clipboard.writeText(output.value).then(() => { const original = this.textContent; this.textContent = 'Copied!'; this.classList.add('btn-success'); setTimeout(() => { this.textContent = original; this.classList.remove('btn-success'); }, 2000); }); }); })();