Designed with WordPress
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


Leave a Reply