HTML

Images

The <img> element is used to display images on a webpage. The src attribute specifies the image location, while the alt attribute provides alternative text if the image cannot be displayed.

<h2>HTML Image</h2>

<img 
    src="https://images.unsplash.com/photo-1516321318423-f06f85e504b3"
    alt="Person using a computer"
    width="500"
>
Interactive Sandbox
HTML/CSS/JS