Forum : Tables in html
Brief description  about Online courses   join in Online courses
View Thangam  Nayagi 's Profile

Tables in html

sir,

How to arrange elements one after the other in a row of a table in html. for eg.Past 24-hr:
Precip: 0 in
Snow: 0 in
Asked by Thangam Nayagi | Dec 30, 2010 |  Reply now
Replies (2)
View thangam nayagi 's Profile
Thanks sir
Jan 2, 2011
View teacher siliconindia 's Profile
Hi

<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Past 24-hr:</td>
</tr>
<tr>
<td>Precip: 0 in </td>
</tr>

<tr>
<td>Snow: 0 in </td>
</tr>
</table>

Try this code.

Regards
Jan 2, 2011