Especially when they tag every element on the page with inline styles ...
<script>
function badTimes() {
eles = new Array('p','td','tr','ul','li','table','span','div','a');
for (i=0; i< eles.length; ++i) {
this_element = eles[i];
jQuery(this_element).css("fontFamily","Tahoma,Arial,Sans");
}
};
badTimes();
</script>
😃 😉