In: Computer Science
Create, test, and validate an HTML document that defines a table with columns for state, state bird, state flower, and state tree. There must be at least five rows for states in the table.
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tr>
<th>State</th>
<th>State bird</th>
<th>State flower</th>
<th>State tree</th>
</tr>
<tr>
<td>Arunachal Pradesh</td>
<td>Rose ringed Parakeet</td>
<td>Jasmine</td>
<td>Neem</td>
</tr>
<tr>
<td>Assam</td>
<td>White-winged wood duck</td>
<td>Foxtail orchids</td>
<td>Hollong</td>
</tr>
<tr>
<td>Bihar</td>
<td>Rose ringed Parakeet</td>
<td>Kachnar</td>
<td>Peepal</td>
</tr>
<tr>
<td>Gujarat</td>
<td>Greater flamingo</td>
<td>Marigold</td>
<td>Mango</td>
</tr>
<tr>
<td>Haryana</td>
<td>Black francolin</td>
<td>Lotus</td>
<td>Peepal</td>
</tr>
</table>
</body>
</html>