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

HTML: Level 4 lesson 11

Here is the code I tried and don't understand what is wrong:
<!doctype html>
<html>
<head>
<title>My Webpage Title</title>
</head>
<body>
<table border='1'>
<thead>
<th>Country</th>
<th>Independence Day</th>
</thead>
<tbody>
<tr>
<td>India</td>
<td>15th August, 1947</td>
</tr>

<tr>
<td>USA</td>
<td>4th July, 1776</td>
</tr>

<tr>
<td>China</td>
<td>1st October, 1949</td>
</tr>
</tbody>
</table>
</body>
</html>
by

2 Answers

sam5epi0l
Hey, please share the error message when you submit the code.
Balutx2f8
Add the heading in between the
<tr>
<th>Country</th>
<th>Independence Day</th>
</tr>

Login / Signup to Answer the Question.