Website loading tips

Hi all,
I am new to the forum and i have a question about website loading.
What are the best ways to optimize a website so images and videos etc load faster.

Thanks for letting me know.

Try to cut out any extra stuff that isn’t needed, thats about all you can do on a webpage to make it load faster.

Oke thanks for letting me know. I appreciated the quick reply :slight_smile:

  1. Put css at top
  2. put JS on bottom
  3. make css and js external
  4. avoid css expresions
  5. avoid redirects
  6. configure e-tags
  7. make ajax cachable
  8. uset get for ajax (this is not so secure in some case)
  9. avoid 404 error
  10. dont’t scale images in html
  11. favicon small and cachable
  12. type width and height for images
  13. optimize images (e.g. smush.it)
  14. enable gzip compression
  15. minify JS
    16 minify CSS
  16. Parallelize downloads across hostnames
  17. remove unused css
  18. combine external JS in few few files as possible
  19. cut unnecessary whitespaces and enters
    .
    .
    .
    Any other sugestions???

YSLOW and Page Speed add-ons for firefox the best tools i know to speed up webpage

Wow that are some great tips didn’t know about some of them.
Thanks i’ll be sure to look ad all of them building my website.

Seeya Bubt