Computer Science, asked by anushkaprasad, 11 months ago

write the html code to produce the following table.​

Attachments:

Answers

Answered by SaavnM
7

Answer: The codes for given table are as follows :

<!DOCTYPE html>

<html>

<body>

<table border="1">

<tr>

<td>A</td>

<Td>C </td>

</tr>

<tr>

<td>B</td>

</tr>

<tr>

<td>C</td>

<td>E</td>

</tr>

</table>

</body>

</html>

Similar questions