Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML How to Make a Website Creating HTML Content Organize with Unordered Lists

mariama mcgee
mariama mcgee
185 Points

what exactly is an image tag?

i wrote the code just like the demo in the video before and it wont let me continue because of the image tag. But i thought i added it. I am not sure

1 Answer

An image tag is used to display an image on a webpage via a <img> tag. Image tags 9( <img> ) do not require closing tags like i.e. the html tags( html></html> ) or body tags( <body></body> ). To input an image simply use <img src="" alt='" href=""> . Note, src is the only necessary one, but all three are recommended. src is used to bring the image up from its original "link." alt is used for helping describe the image to blind/visually impaired users. href allows you to link the image, so that a user can click the image to go directly to its source. Hope this helps!