Can someone gimmie a URL to a site that will load ur page, and tell u how long it takes to load, and what u can do to cut down that load time?
Thanx!
Printable View
Can someone gimmie a URL to a site that will load ur page, and tell u how long it takes to load, and what u can do to cut down that load time?
Thanx!
I don't think it's quite what you want, but the W3C has a link checker at http://validator.w3.org/checklink which I think tells you the responcse time for linked documents.
As for making your pages smaller you can do several things:
- Use CSS instead of HTML where appropriate, and put your CSS in an external file. That way browsers can cache the file, and not have to reload it each time.
- Remove useless white space (when used to indent blocks of code
- Also using tables for layout often create loads of waste, when a couples DIV may have done instead of several nested tables
- Use text and CSS instead of images (in some cases)