|
Tips
& Tricks To Speed Up
Your Website Load Time
Reduce the size of your image files:
Using a simple imaging program such as Paint
Shop Pro you can experiment by changing between gif & jpg
formats, scaling the pictures to occupy less screen area and adjusting
the compression. This can trim off a lot of excess "fat".
Specify the dimensions of your images in your HTML code:
By simply including height="xxx" and width="yyy"
your visitors web browser will draw out and reserve an area on the
screen and load the text before returning to load your images. This
can have a dramatic affect on the speed at which your page loads.
Use less image files on each page:
This may sound obvious, but you need to understand how web browsers work! Your
browser has typically 4 "sockets" each one can download
one file at a time. If you have 4 images then each can load simultaneously,
but if you have 5, then one has to wait until a socket becomes available.
|