You need to include a little bit of modern day HTML in your post to do it.There is an "img src" tag -- that's short hand for image and source. it looks like this: <img src="http://my photo location" /> <img src="http://my photo 2 location" /> Naturally substituting your own photo locations... So in this case, your two photos would be: <img src="http://img388.imageshack.us/img388/2996/10005653sr.jpg" /> <img src="http://img309.imageshack.us/img309/8338/10005610el.jpg" /> Now, I posted those so you could read them using a special technique -- normally when you type that, they'd be interpreted as a "tag" so you'd see the image instead of the text of the code. ===== For the really interested, it used to be you just closed the tag with an > however today's web standards like to have a / put before the end of all tags, including self-contained ones like this, so you use a /> construction of image tags now. And the way I make the symbols show up is using the code &#60 as a < &#62 as a >
|