HTML Tutorial

The language for building web pages.

HTML Images

HTML Images

HTML images are defined with the <img> tag. The src attribute specifies the path to the image, and the alt attribute provides alternative text.

Image Attributes:

AttributeDescription
srcPath to the image (required)
altAlternate text (required for accessibility)
widthImage width in pixels
heightImage height in pixels
titleTooltip on hover
loadinglazy / eager loading

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics