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:
src(path to image file)alt(description for accessibility). Always include both!
Example:
<img src="cute_dog.png" alt="Photo of a golden retriever sleeping" />
Example
Additional Resources
- W3Schools Reference: http://www.w3schools.com/html/html_images.asp
Loading quiz...