How can I make my web page load faster?

css, html, javascript

Solution

Move your JS and CSS out of the HTML and into one minified file for each. Also, reduce the size of any images, if you can. I didn't notice any rollover images, but if you have them, consider CSS sprites.

Problem

Assuming an empty browser cache - How can I make a web page load faster by only applying HTML/CSS/JavaScript code changes? Meaning, don't recommend moving servers, using a CDN, etc. Just code changes to make it load faster.

Original source