CSS inline
<html><head></head><body><p style="background-color:red" bgcolor="red">Roter Hintergrund</p></body></html>
Roter Hintergrund
CSS inline & minify
<html><head></head><body><p style=background-color:red bgcolor=red>Roter Hintergrund</p></body></html>
Roter Hintergrund
HTML minify
IN:<p class="backRed" id="test" >Roter Hintergrund</p>
OUT:
<p class="backRed" id="test" >Roter Hintergrund</p>
Roter Hintergrund
CSS minify
IN:p.backRed { background-color: red; }
#theid .below { display: none; }
OUT:
p.backRed { background-color: red; }
#theid .below { display: none; }
JS minify
IN:const hi = function(name) { alert('Hi ' + name + '!'); };
hi('')
OUT:
const hi = function(name) { alert('Hi ' + name + '!'); };
hi('')

