1
HTML/CSSBeginner#css#fundamentals
Always specify explicit width/height or aspect-ratio on images and embeds so the browser reserves space before the resource loads, preventing surrounding content from jumping once it arrives.
<img src="banner.jpg" width="800" height="400" alt="Banner">
/* or */
.banner { aspect-ratio: 2 / 1; width: 100%; }