HTML Minify


About


Minification is the process of minimizing code and markup in your web pages and script files. It’s one of the main methods used to reduce load times and bandwidth usage on websites. Minification dramatically improves site speed and accessibility, directly translating into a better user experience. It’s also beneficial to users accessing your website through a limited data plan and who would like to save on their bandwidth usage while surfing the web.

Basic Example


Unminified
<h1>Random Quote Generator</h1><div class="white-box"><div class="quote"><i class="fa fa-quote-left fa-3x"></i> <p class="random-quote"> <span id="text"></span></p></div><div class="random-author">- <span id="author"></span></div><div class= "buttons">
Minifyied
<h1>Random Quote Generator</h1><div class=white-box><div class=quote><i class="fa fa-quote-left fa-3x"></i><p class=random-quote> <span id=text></span></p></div><div class=random-author>- <span id=author></span></div><div class=buttons></div></div>

Related Tools