is tehre a html code to put two pictures side by side?

  • Thread starter Thread starter glum9
  • Start date Start date
G

glum9

Guest
ok well I am editing my blog and it looks pretty awkward when one of the pictures is one top of the other so is there any html code that i can put the pictures side by side,

btw, im using blogger and the 2 pics are at my sidebar. they're pretty small :D
 
Try This....

<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<img border="0" src="pic1.jpg"></td>
<td>
<img border="0" src="pic2.jpg"></td>
</tr>
</table>

Make sure to replace the "pic1.jpg" and "pic2.jpg" with the exact url location of your images

example: "http://www.yoursite/images/pic1.jpg"
 
Back
Top