Computer Science, asked by sshrikant10240, 6 months ago

33. Write HTML code to produce following table :
A
B
E
С C
F

Answers

Answered by 57heenaanzar
3

Explanation:

<html>

<head><title></title></head>

<body>

<table border="2" frame="void" rules="cols">

<tr>

<td>A</td>

<td>D</td>

</tr>

<tr>

<td>B</td>

<td>E</td>

</tr>

<tr>

<td>C</td>

<td>F</td>

</tr>

</table>

</body>

</html>

lf your like my answer then mark me as a brainliest

Similar questions