Discussion board
Image and Test aligning on webpage
By Anoop M C
How to get some text display after the Image on my file. but it happens to show after the image.

What I want is - text should appear right after the image on the right side of the page.


<a href= home.html> Home </a> | <a href= current.html> Current Openings </a> | <a href= News.html> News
Reply
Post   Reset
Sanjay S Nair replied to Anoop M C Monday, November 02, 2009
<table>
<tr><td><img src="img1.ext"></td><td>Text for img1.ext</td></tr>
<tr><td><img src="img2.ext"></td><td>Text for img2.ext</td></tr>
<tr><td><img src="img3.ext"></td><td>Text for img3.ext</td></tr>
<tr><td><img src="img4.ext"></td><td>Text for img4.ext</td></tr>
</table>