Friday 12/5/25

today i worked on making a exam table using html to sharpen up my skills this project didn’t take very long it was very simple and effective and just bare bones for startup of tables

<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>Average Grade</td>
          <td>78.8</td>
        </tr>
      </tfoot>

this code here put them in order and with first name last name and score i will add image below


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *