Adding Images

Images are added using the <img> tag. It is a self-closing tag that requires the src and alt attributes.

  • src defines the image path
  • alt provides alternate text for accessibility
  • Can be local or external URLs
<img src="image.jpg" alt="Description" />
← PrevNext →