Menu
×
×
Correct!
Exercise:Add a table row with two table headers. The two table headers should have the value "Name" and "Age".
<table>
@(4) @(13) @(12) @(5) <tr> <td>Jill Smith</td> <td>50</td> </tr> </table>
<table>
<tr> <th>Name</th> <th>Age</th> </tr> <tr> <td>Jill Smith</td> <td>50</td> </tr> </table> Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 90 exercises.
Are you sure you want to continue?