Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level4 lesson12

<!doctype html>
<html>
<head>
<title>My Webpage Title</title>
</head>
<body>
<table border='1'>
<thead>
<tr>
<th>Student</th>
<th>Sports</th>
</tr>
</thead>
<tbody>
<tr>
<td >Jack</td>
<td >Basketball</td>
</tr>
<tr>
<td>Jill</td>
<td >Basketball</td>
</tr>





<tr>
<td >Jonah Hill</td>
<td>Beer Pong</td>
</tr>
</tbody>
</table>
</body>
</html>
by

1 Answer

iamabhishek
Here is the answer:

<!doctype html>
<html>
<head>
<title>My Webpage Title</title>
</head>
<body>
<table border='1'>
<thead>
<tr>
<th>Student</th>
<th>Sports</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jack</td>
<td rowspan ="2">Basketball<>/td</tr>

<tr>
<td>Jill</td>

</tr>

<tr>
<td>Jonah Hill</td>
<td>Beer Pong</td>
</tr>
</tbody>
</table>
</body>
</html>

Login / Signup to Answer the Question.