The basic pattern
<img
src="photo-1024.jpg"
srcset="photo-640.jpg 640w,
photo-1024.jpg 1024w,
photo-1600.jpg 1600w,
photo-2048.jpg 2048w"
sizes="(min-width: 1100px) 800px,
(min-width: 700px) 60vw,
100vw"
width="1600" height="1067"
alt="A description of what the image shows">
The src is the fallback for anything that does not understand srcset. The width and height give the aspect ratio so the browser reserves space. The alt is not optional.