Ways to improve website performance
Once the document (website's main page) has been downloaded, we
analyze it. It allows us to give webmasters some recommendations on how
to optimize page load speed. We analyze the internal and external
factors.
Keep Components under 25K
Users often visit web site using a mobile phone. Even the most modern and advanced gadgets
have some limitations. For example an iPhone browser do not cache page components bigger
than 25K. So you should strive to ensure that scripts, CSS-styles, etc.
are less than 25K.
http://www.otto.de/ Content-Encoding: text/html;charset=iso-8859-1. File size 32.22 Kb.
http://www.otto.de/is-bin/intershop.static/WFS/Otto-OttoDe-Site/-/de_D... Content-Encoding: image/gif. File size 25.65 Kb.
http://www.otto.de/is-bin/intershop.static/WFS/Otto-OttoDe-Site/-/de_D... Content-Encoding: image/jpeg. File size 28.51 Kb.
Alternate text for the images.
As you may already know, search engine that indexes your pages, do not
have eyes. And all content you are trying to display on your site is
just HTML & CSS code, images, Flash, etc for the robots. It is It's
extremely important to describe each of the objects more datailed using
ALT, TITLE and other tags.
Our robot has determined that the otto.de page has
6
images, which has no tag ALT. Tag ALT is a text field, that specifies an
alternate text for an image. But not only. Search engines consider this
tag as a supplemental result for assessing the content of your page
entirely. Do not ignore it!
For example your page has this code:
| 1243. |
|
<img class="teaserHappyCube" src="/is-bin/intershop.static/WFS/Otto-OttoDe-Site/-/de_DE/imagesOnline/odt/happy_cube_flag.gif"> |
We recommend you use rich img code in that place:
| 1243. |
|
<img class="teaserHappyCube" src="/is-bin/intershop.static/WFS/Otto-OttoDe-Site/-/de_DE/imagesOnline/odt/happy_cube_flag.gif" alt="online"> |
P.S. We used keyword for this image that seemed to us most important for your page.
But you can go ahead and give to each of 6 images an ALT text. This problem requires
responsible approach. No need to put the same text at alt tag of the all images.
Imagine that the pictures do not show and try to make sure that users understand what
is shown on the picture based on the alt tag
Specify image dimensions
The browser needs to know the actual dimensions of image (width and height) to quickly render webpage.
We have detected that the 13 images has no width and height.
If you do not specify the width and/or height, then in order to
correctly display the image browser needs to download it and only then
put on the screen. Otherwise, there is a chance browser will display
elements under the picture inappropriately as well as the possible
presence of "jumping" effect of the page content (until the page load
is finished).
We provide below example of how to define the image /is-bin/intershop.static/WFS/Otto-OttoDe-Site/-/de_DE/imagesOnline/frame/footer/find_ich_gut_footer.gif dimensions:
| 1581. |
|
<img src="/is-bin/intershop.static/WFS/Otto-OttoDe-Site/-/de_DE/imagesOnline/frame/footer/find_ich_gut_footer...." alt="Otto... find ich gut!" width="IMAGE_WIDTH_HERE" height="IMAGE_HEIGHT_HERE"> |
Using H1 tag
Show main content of the page clearly. One of the most important
internal website ranking factors is the H1 tag. It's a title of the
document and the most powerful keyword, actually.
Our robot did not
find the h1 tag on the page.
Use the TITLE for A tag
As we have already mentioned, search engine bots can not see the site
like a people do it. They more focused on the descriptions of certain
page elements. That's why we strongly recommend use TITLE operator in
the "A" tag. This operator not only describes the page referenced by
the page more detailed, but also takes part in the page describing.
For example, you have the link on your website:
| 157. |
|
<a id="serviceLink" class="serviceLink" href="http://www.otto.de/is-bin/INTERSHOP.enfinity/WFS/Otto-OttoDe-Site/de_DE/-/EUR/OV_ViewTemplate-View;s..." name="serviceLink"><span>Service bei OTTO</span></a> |
We suggest you to remake it in this way:
| 157. |
|
<a id="serviceLink" class="serviceLink" href="http://www.otto.de/is-bin/INTERSHOP.enfinity/WFS/Otto-OttoDe-Site/de_DE/-/EUR/OV_ViewTemplate-View;s..." name="serviceLink" title="sweats"><span>Service bei OTTO</span></a> |
Of course, you can (and should) use more proper phrase instead of the "sweats" that describes the link
http://www.otto.de/is-bin/INTERSHOP.enfinity/WFS/Otto-OttoDe-Site/de_DE/-/EUR/OV_ViewTemplate-View;sid=p8Y__8Ucj9Wb_4g8b5AYlqkWa9LpSrNaQdOcAzVd4sBAA_pRQbu6PHo_4sBAA3Vi60vZFEsE?ls=0&Template=serviceinformation%2Foverview%2FSIoverview.
Number of links on the page
Try to avoid a large number of links on the page. Our robot
have found 949 links on this page. Google recommends
to keep the number of links fewer than 100.
More information about this topic you can find in
Google
Webmaster Guidelines
and in the post
"How many links per page?"
by Matt Cutts (head of Google’s Webspam team)