×
×
Correct!

Use the correct HTML attribute to make the second TH element span two rows.

<table>
  <tr>
    <th>Name</th>
    <td>Jill Smith</td>
  </tr>
  <tr>
    <th rowspan="2">Phone</th>
    <td>555-77854</td>
  </tr>
  <tr>
    <td>555-77854</td>
  </tr>
</table>
<table>
  <tr>
    <th>Name</th>
    <td>Jill Smith</td>
  </tr>
  <tr>
    <th rowspan='2'>Phone</th>
    <td>555-77854</td>
  </tr>
  <tr>
    <td>555-77854</td>
  </tr>
</table>

Not Correct

Click here to try again.

Correct!

<table>
  <tr>
    <th>Name</th>
    <td>Jill Smith</td>
  </tr>
  <tr>
    <th >Phone</th>
    <td>555-77854</td>
  </tr>
  <tr>
    <td>555-77854</td>
  </tr>
</table>




×

Reset the Score?

This will reset the score of ALL 106 exercises.

Are you sure you want to continue?



×

Congratulations!

You have finished all 106 HTML exercises.

Share your score:



Get Certified!

Take our HTML Developer Certificate to prove that you have fundamental knowledge of web development using HTML.