Skip to content

Instantly share code, notes, and snippets.

@livefiredev
Last active February 15, 2022 13:01
Show Gist options
  • Select an option

  • Save livefiredev/3ec3fc9c4943919919a3e5b413982632 to your computer and use it in GitHub Desktop.

Select an option

Save livefiredev/3ec3fc9c4943919919a3e5b413982632 to your computer and use it in GitHub Desktop.
SRC Set Tag

Classic HTML IMG Tag

<img src="img/original.jpg" />

HTML Image Tage With srcset

<img src="img/original.jpg"
srcset="
    /img/2000.jpg 2000w,
    /img/1000.jpg 1000w,
    /img/750.jpg 750w,
    /img/500.jpg 500w,
    /img/250.jpg 250w" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment