Computer Science, asked by kashyapshubhangi375, 4 months ago

Write the code in HTML to create the following table.
S.no City literacy
1 Nagpur 91.92
2 cheenal 99.18
3 Mumbai 89.73
the border size of table should be 2 pixels​

Answers

Answered by HozaifaNazarSiddiqui
1

write the boiler html plate and put the below in body tag

<table border-size = 2>

<th>

S.no

</th>

<th>

City

</th>

<th>

Litracy

</th>

<tr>

<td> 1 </td>

<td> Nagpur </td>

<td> 91.92 </td>

</tr>

<tr>

<td> 2 </td>

<td> Chennai </td>

<td> 99.18 </td>

</tr>

<tr>

<td> 3 </td>

<td> Mumbak </td>

<td> 89.73 </td>

</tr>

</table>

Similar questions