Build a Final Exams Table - Step 1

Tell us what’s happening:

Error: Your opening head tag should come before the closing head tag. Somone can you please help here. Thanks

Calculus Final Exams Table

Your code so far


<!-- User Editable Region -->

<!DOCTYPE html>
<html lang="en">
  
 <head>
    <meta charset="UTF-8" />
    <title>Calculus Final Exams Table</title>
 </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>

        <tr>
          <td>Doe</td>
          <td>Samantha</td>
          <td>92</td>
        </tr>

        <tr>
          <td>Rodriguez</td>
          <td>Marcus</td>
          <td>88</td>
        </tr>

        <tr>
          <td>Thompson</td>
          <td>Jane</td>
          <td>77</td>
        </tr>

        <tr>
          <td>Williams</td>
          <td>Natalie</td>
          <td>83</td>
        </tr>
      </tbody>

      <tfoot>
        <tr>
          <td colspan="2">Average Grade</td>
          <td>78.8</td>
        </tr>
      </tfoot>
    </table>
  </body>
</html>

<!-- User Editable Region -->

Your browser information:

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

Challenge Information:

Build a Final Exams Table - Step 1

What step are you on? You have linked to step 1 but you have added extra code not asked for.

Reset the step and only add what is asked in the instructions.

Thank You. Just followed process step by step seems working.
Thank You