Optimizing Your Web Page Speed
(Page 1 of 4 )
Fast delivery is the key to success. Website speed optimization (load time) can help you increase conversion rates, win more customers and improve their satisfaction. Think of Google’s approach to search and the milliseconds it takes to display results; it was one of many reasons people loved it when it first came out, though this speed is taken for granted today.
In this article you will learn how to minimize page load times by reducing HTTP requests, optimizing graphics, optimizing multimedia, converting tables to CSS, optimizing JavaScript and more.
Speed Optimizing Your Website
Start by stripping out all inline style and converting files into pure HTML code. Look at the pages and see if elements can be created more efficiently (usually tables can be converted to CSS). Once pages are stripped of all style, you can put those styles into an external CSS file.
Reduce the number of HTTP requests.
Put all visuals into an external style sheet and position it on top in the <head>.
Put all JavaScript in external files and position it at the bottom of the <head>. This will enable browsers to load content (HTML) and visuals (CSS) first, and then take care of javascript functionalities (which are not used until a page loads).
Switching to semantic mark-up also helps, but it's not a requirement. The basic idea is to strip pages down to their HTML structure, group content by div tags and target div tags with CSS IDs and Classes.
Next: Minimize HTTP Requests >>
More Search Optimization Articles
More By Ivan Strouchliak