HTML Resources: Images

The job of an image tag is to embed an image inside of a web page. This is distinct from a hyperlink (a tag), whose job it is to jump to a new resource.

Required attributes:

  1. src (path to image file)
  2. alt (description for accessibility). Always include both!

Example:

<img src="cute_dog.png" alt="Photo of a golden retriever sleeping" />

Example

Additional Resources

Loading quiz...

UNC Asheville Department of Computer Science