Part 3: Create another table as shown below: Notebook ++ (HTML)
Note: Add a table footer as ‘Excerpt from Demographic Updates –
FAMU Schools of Eng.’ Demographics of FAMU School of Eng.
Expert Answer
<!DOCTYPE html>
<html>
<head>
<style>
thead {color:Brown;}
tbody {color:Black;}
tfoot {color:red;}
table,th
{
border: 3px solid brown;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th bgcolor=”#A52A2A”><font color=”#fff”>Region</font></th>
<th bgcolor=”#A52A2A”><font color=”#fff”>Percentage</font></th>
</tr>
</thead>
<tfoot>
<tr>
<td>Excerpt from Demographoc Updates – FAMU Schools of Eng. Demographics of FAMU School of Eng</td>
</tr>
</tfoot>
<tbody>
<tr>
<tr bgcolor=”#808080″>
<td>New England</td>
<td>12%</td>
</tr>
<tr>
<td>Mid-Atlantic</td>
<td>19%</td>
</tr>
<tr>
<tr bgcolor=”#808080″>
<td>South and Puerto Rico</td>
<td>15%</td>
</tr>
<tr>
<td>Midwest and Plains States</td>
<td>12%</td>
</tr>
<tr>
<tr bgcolor=”#808080″>
<td>Southwest and Mountain</td>
<td>10%</td>
</tr>
<tr>
<td>West, Alaska, and Hawaii</td>
<td>20%</td>
</tr>
<tr>
<tr bgcolor=”#808080″>
<td>Abroad</td>
<td>13%</td>
</tr>
</tbody>
</table>
</body>
</html>