<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/en/courses/web-beginner-en-zrZ6c/0/4?curriculum_id=50579fb998b470000202dc8b
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
I submitted this code and it gave me the “Way to go!” message. But the table doesn’t look right. It looks like this:
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css" />
<title>My Photo Page</title>
</head>
<body>
<table>
<tbody>
<th>
<thead colspan="3">Header</thead>
</th>
<tr>Row 1</tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<tr>Row 2</tr>
<td>Cell 4</td>
<td>Cell 5</td>
<td>Cell 6</td>
<tr>Row 3</tr>
<td>Cell 7</td>
<td>Cell 8</td>
<td>Cell 9</td>
</tbody>
</table>
</body>
</html>