|
This just came up in another thread here. For Google, which is the only 'bot that matters, the limit is half a meg for your html document. Which is either your *.htm file, or the response your ASP or PHP code generates. Of course, I have no idea how realistic that number is.
So using inline styles (<span style="color: red; margin-left: 25px; float: right; text-margin: 0; size: larger; ...">) is bad, and so is using the <style> or <script> tag within your html. Put all that in separate files you call out to, if you really have enough content and markup to worry about the limit.
If you're not using FireBug ( for FireFox ) you should be. It can tell you the size and download time of each file that had to be downloaded ( ie each hit ) to render a page.
|