Can I do this with HTML coding?

The plooper

New member
Say I have three lines as follows;

<img border="0" src="assets/compose_message.png" width="16" height="16" title="Name: name1">
<td><center>7/26/2009 10:07:44 AM</td></center><td><center>
<img border="0" src="assets/compose_message.png" width="16" height="16" title="Name: name2">

I want to and change it into as follows;

name1
name2

is there anyway I can do this with HTML coding?
 
your HTML is not great (bad nesting)...try this
<tr><td>name1</td></tr>
<tr><td>name2</td></tr>

default cell alignment is usually left, but you can reinforce that if you wish - you can put align command in with TR (affects whole row)or TD (just affects that cell) - thus

<tr align=left><td>name1</td></tr>
<tr><td align=left>name2</td></tr>

always check your code before publishing it (link below)

if that did not answer your question, please rephrase the question more clearly
 
Back
Top