108
samir
7y

"A picture is worth a thousand words"

No one knows the pain of that more than a front end dev trying to reduce load times of a web page.

Comments
  • 9
    @SHA-16384 I truly hate those websites that load high resolution pictures for their ads, but use the crappiest resolution to show something that belongs to their page. Like YouTube ads vs content quality.
  • 7
    Defer everything so it loads without CSS and JavaScript. Initial load is super quick... but you do get a massive fouc (Flash Of Unstyled Content).

    Depends if you give a fouc about fouc.
  • 4
    @Archer04 @samir for the highresolution pictures on mobiles, i would recommend the picture-tag to fix it. https://developer.mozilla.org/de/...
  • 1
    The <picture> tag helps to specify image resources. It supports global and event attributes in HTML.
Add Comment