--
-->
Images!
Images are made by first having an image on your site (you have to upload it, more on that later) then making a tag that says "show this picture here." That tag would be the "img" tag.
"img" is like the anchor, in that it's always followed by something. Mostly, it's followed by "src=" as in
<img src=
after that you put in your picture name (something.jpg... in quotes)
<img src="black_knight.jpg">
that would show a picture of the black knight... if there was a picture named black_knight.jpg uploaded to your website. you can do this with any image file, not just .jpg's.
Notice also, that you don't need a closing tag. Just show the picture.
you can make lists too