Build a Final Exams Table - Step 12

Tell us what’s happening:

// running tests
2. Your td element should have a colspan attribute.
3. Your td element should have a colspan attribute with a value of “2”.
// tests completed

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>

        <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>

<!-- User Editable Region -->

          <td>Average Grade</td>
          <tr>
            <td colspan="2">Total Points</td>
            <td>78.8</td>
            </tr>

<!-- User Editable Region -->

      </tfoot>
    </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/141.0.0.0 Safari/537.36 Edg/141.0.0.0

Challenge Information:

Build a Final Exams Table - Step 12

Welcome to the forum @serchbar81

You should not have a Total Points table cell.

Please reset the step to restore the seed code.

For this step you need to add a colspan attribute to the second to last td cell.

Do not make any other modifications to the code.

Happy coding