<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
It is saying that I did I add three headings. I’m thinking that I did wondering if I can get some help on this.
You have the headings, but they are marked up as table data, rather than table heading cells.
<td>table data</td>
<th>table heading</th)
TH elements are multipurpose and can be used on columns and on rows. To tell the browser which range they apply to, we use the scope="col" and scope="row" attributes. No so important, just now, but good to know and I believe it is mentioned in the lessons.