NU week1 part 2
Northeastern University ITC 22132- Display the above info in an HTML table with each form element as a table heading. You will need to hard code data for 3 customers in the HTML table
| FirstName | LastName | SSN | DOB | Phone | Gender | AccountNumber | AccountType |
|---|---|---|---|---|---|---|---|
| Joe | Smith | 011-40-4545 | 1-16-1949 | 555-566-5777 | male | 02354 | Checking |
| Mary | Jones | 022-56-4565 | 2-15-1978 | 254-568-8989 | female | 02545 | CD |
| Jane | Doe | 055-45-4444 | 4-14-1987 | 565-858-8845 | female | 54545 | Saving |
<body><table width="700" border="1" cellspacing="1" cellpadding="1">
<tr>
<th scope="col">FirstName</th>
<th scope="col">LastName</th>
<th scope="col">SSN</th>
<th scope="col">DOB</th>
<th scope="col">Phone</th>
<th scope="col">Gender</th>
<th scope="col">AccountNumber</th>
<th scope="col">AccountType</th>
</tr>
<tr>
<td>Joe</td>
<td>Smith</td>
<td>011-40-4545</td>
<td>1-16-1949</td>
<td>555-566-5777</td>
<td>male</td>
<td>02354</td>
<td>Checking</td>
</tr>
<tr>
<td>Mary</td>
<td>Jones</td>
<td>022-56-4565</td>
<td>2-15-1978</td>
<td>254-568-8989</td>
<td>female</td>
<td>02545</td>
<td>CD</td>
</tr>
<tr>
<td>Jane</td>
<td>Doe</td>
<td>055-45-4444</td>
<td>4-14-1987</td>
<td>565-858-8845</td>
<td>female</td>
<td>54545</td>
<td>Saving</td>
</tr>
</table>