Q: How can I insert multiple images in a message post?
A: It's easy. First, each image you want to include must have a URL. In other words, it must reside on an Internet server so that it may be accessed from other computers on the Internet.
    Once you know the URLs of your images, you can insert them into messages by using HTML "image tags" wherever you want to place an image. A sample image tag would look like this:

<img src="http://www.domain.com/imagefile.jpg">

    Note that the URL is enclosed in quotation marks. Don't forget to use both opening AND closing quotation marks. If you like, you can highlight and copy this sample image tag and paste it into your message, replacing the domain and filename placeholders with the actual URL of your image. To make sure you've done everything correctly, be sure to preview your message before posting.
    You can make images appear to the left or right of the text that follows them by using the "align" attribute inside the image tag.
    For example, to place the picture to the left of following text, your image tag would look like this:
<img src="http://www.domain.com/imagefile.jpg" align="left">

    To place the picture to the right of following text, your image tag would look like this:
<img src="http://www.domain.com/imagefile.jpg" align="right">