Programming Examples
HTML Page to display the following table
Create an HTML Page to display the following table:
Solution
<table border="a" width="600px" cellpadding="0">
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Point</th>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>80</td>
</tr>
<tr>
<td>Adam</td>
<td>Johnson</td>
<td>67</td>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
</table>
Output/ Explanation: