HTML Line Spacing & Compact Code
- by William Hand
I was just wondering if there was a professional opinion on the matter of compact code. Does it really speed up page loading. Example:
<body>
<div id="a"></div>
<div id="b"></div>
</body>
VS
<body>
<div id="a"></div>
<div id="b"></div>
</body>
any ideas?