Home
more...


Q. Is it possible to have pictures next to one another instead of just underneath?


A. A simple way is to just keep the image tags one right after the other with no <BR> tags in between.  If you want to create a little space to the sides of the photos, then you would add hspace="5" to the tag. You can change the number to how much space you need.  The number refers to the amount of pixels.  So the tags would end up looking similar to this:

<img src="URLPHOTO1" border="0" width="xx" height="xx" hspace="5">
<img src="URLPHOTO2" border="0" width="xx" height="xx" hspace="5">
<img src="URLPHOTO2" border="0" width="xx" height="xx" hspace="5">
<BR>

I added the width and height in there so you can change out the x's for the actual dimensions.  Doing this helps images load faster.  You can also use your <center> and </center> tags before and after the code to keep them aligned in the center of your page.