1
HTML/CSSBeginner#html#semantics
srcset provides a list of image candidates at different resolutions, and sizes tells the browser how wide the image will render at different viewport widths, so the browser can pick the most efficient image to download.
<img src="fallback.jpg" srcset="small.jpg 480w, medium.jpg 800w, large.jpg 1200w" sizes="(max-width: 600px) 480px, 800px" alt="Hero banner">