Hi, i cant understand <td> and <TR> funda In HTML who will help me for solve my this problem ! Need you help ?
I saw you were asking about tables in HTML in the other thread, and this one is related. Apart from sending you to read the manuals, which you generally should do, the usage of the table, tr and td tags is simple: and <table> </table> make opening and closing tags for the whole tables. Inside of it you should use and closing and opening tags for table rows. And inside of each table rows ( tr's ) you should use table division ( not sure if this is the exact meaning ) - for opening and for closing tag. Example: <table> <tr> <td>first row first column</td> <td>second column first row</td> </tr> <tr> <td>first column second row</td> <td>second column second row</td> </tr> </table> What is most important is to keep track of tag nesting - opening and closing ones.