- 1

I don't know how to do it? please anyone help me.

HTML

13th Feb 2017, 12:35 PM
khurshed
khurshed - avatar
4 Answers
+ 2
you can search on Google,and take the HTML fundamental course on here for directions on basics.
13th Feb 2017, 4:04 PM
Kebb
Kebb - avatar
+ 2
Example: <table>   <tr>     <th>Name</th>     <th>Age</th>    </tr>   <tr>     <td>John Doe</td>     <td>25</td>   </tr>   <tr> <td>David Smith</td>     <td>14</td>   </tr> </table> th means table header. tr means table row and starts a new row. td means table data and contains the data that is to be displayed in the table cell. The two td elements in the tr element define that there are 2 columns in this table. So the table from this example will have two columns, two rows + 1 row for the header.
13th Feb 2017, 4:10 PM
Tashi N
Tashi N - avatar
0
ok.
14th Feb 2017, 5:35 AM
khurshed
khurshed - avatar
0
I am new to sololearn
16th Feb 2017, 3:45 PM
khurshed
khurshed - avatar