HTML Help

LITHIUM

New Member
I need help centering images between text! What would the code be to center an image between two groups of text like

BLah BLAh BLAH BLah Blah
<img src="image" align=center>
Blash Blah Blah Blah Blah

Would this work^^?? how would i align the image?
 
you can always use a table..

<table width='800'>
<tr>
<td><p align='center'>BLah BLAh BLAH BLah Blah </p>
</td>
<td><img src="image" align='middle'></td>
<td><p align='center'>Blash Blah Blah Blah Blah</p>
</td>
</tr>
</table>
 
Back
Top