Search engine optimization (SEO) Question:
Download Questions PDF

What are the downsides of stripping out every non-printable space, tab, and line break from an HTML document, so the entire code essentially resides on a single line? I thought Netscape 4 had trouble with very long HTML lines?

Answer:

I don't advocate making your entire HTML page into one single line. Some editors can choke on long lines, older versions of the Oracle info server can choke on long lines, and if you email your pages (as we do at webref), some email programs can flag a virus in longer lines. So I advocate a max of 255 character lines to be safe, or a max of 2000 character lines to avoid problems with Oracle. Also, removing whitespace can break some JavaScript code, and make your code hard to read. You can avoid these problems by keeping unoptimized versions for any edits, and punctuating your JavaScript statements with semicolons.
<a href="http://www.globalguideline.com/seo" class="jtabs">Search Engine Optimization Articles</a>

Download Search engine optimization (SEO) Interview Questions And Answers PDF

Previous QuestionNext Question
Does precompilation of loop limits in Web programming languages like ColdFusion, Java, and JavaScript help?What is the most common problem to be solved when optimizing web sites?