Computer Science, asked by deepak979098, 7 months ago

Write HTML codes for getting the following Table with given heading SAMPLE FOR TABLE on the Web-Page. All the desired parameters can be taken according to your choice.

sample for table
sn. names. mob number
1. rakesh. 466446
2. ramesh. 464689


Answers

Answered by akansksha
6

Answer:

Consider the following HTML markup for a table:

<table>

<tr> <th> AAA </th>

<td> EEE </td> </tr>

<tr> <th> OOO </th>

<td> III </td> </tr>

</table>

Which one of the following shows how this HTML will be displayed on a web page?

AAA(in bold) EEE

OOO(in bold) III

Similar questions