friday 10/24/5

Today i built a finals exam table using html this quick project took 15mins and sharpened up on my skills while being simple.

<thead>     
        <tr>
          <th>Last Name</th>
          <th>First Name</th>
          <th>Grade</th>
        </tr>
      </thead>

this is the code that i used to create as sort of a header

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

this is main body code with all the names and i will add pictures below


Comments

2 responses to “friday 10/24/5”

  1. Luke Wilmoth Avatar
    Luke Wilmoth

    This blog post shows off your work pretty well, but I do not think you are challenging yourself each Friday.

    1. ok i will work on this.

Leave a Reply

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