- 1
I don't know how to do it? please anyone help me.
HTML
4 Réponses
+ 2
you can search on Google,and take the HTML fundamental course on here for directions on basics.
+ 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.
0
ok.
0
I am new to sololearn