![]()
What is all that tag stuff about? Does anybody really know? |
About images --- this is an image (no kidding!!)The HTML tag to get an image on your page is .. <IMG> .. but you need to name the source of the image inside that tag, so the full HTML is ... <IMG SRC="happy.gif"> because the name of the image is happy.gif That's almost all you need to know about images.
And the way to get an image to appear on the RIGHT of your page is to use the ALIGN feature of the IMAGE tag. <IMG SRC="happy.gif" ALIGN=RIGHT> See if you can guess how to make images align on the LEFT :) |