Build a Final Exams Table - Step 7

Tell us what’s happening:

I keep getting

  1. You should have a second tr inside your tbody element.
  2. You should have a td element with the text Doe inside the second tr element.
  3. You should have a td element with the text Samantha inside the second tr element.
  4. You should have a td element with the text 92 inside the second tr element.
    Can someone please tell me what I am doing wrong?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Calculus Final Exams Table</title>
    <meta charset="UTF-8" />
  </head>
  <body>
    <table>
      <caption>
        Calculus Final Exam Grades
      </caption>

      <thead>     
        <tr>
          <th>Last Name</th>
          <th>First Name</th>
          <th>Grade</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Davis</td>
          <td>Alex</td>
          <td>54</td>
        </tr>
      </tbody> 

<!-- User Editable Region -->
      <thead>
        <tr>
          <th>Last Name</th>
          <th>First Name</th>
          <th>Grade</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Doe</td>
          <td>Samantha</td>
          <td>92</td>
        </tr>
      </tbody>

      <thead>
        <tr>
          <th>Last Name</th>
          <th>First Name</th>
          <th>Grade</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Rodriguez</td>
          <td>Marcus</td>
          <td>88</td>
        </tr>
      </tbody>
<!-- User Editable Region -->
    </table>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36

Challenge Information:

Build a Final Exams Table - Step 7

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-final-exams-table/66a9c7a4521d2b1b1ec6dcf0.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @chevyfm18

You are closing off the tbody element too early.

Please remove from it after the first tr element for the tbody element.

You don’t need to repeat the thead element inside the tbody element.

Remove every thead element and all the child elements inside from the tbody element.

Also remove the opening and closing tbody element nesting individual tr elements.

You should have only one closing tbody in your code.

It should appear above the closing table tag.

Happy coding