Computer Science, asked by Mimansa27, 1 year ago

Write html code to produce following table

Attachments:

Answers

Answered by purujarwa
37

<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>


Mimansa27: Why did you use rules =groups????please tell me
purujarwa: well, i edit it sorry for my mistake .....groups of rules displays the border of the selected cells
Mimansa27: Thank you
Answered by stefangonzalez246
17

HTML code to print the given table:

<html>

<head> <title> To print the table </title> </head>

<body>

<table border = "4" frame = "3" 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>

</body>

</html>

Where, <td> stands for table data.

            <tr> stands for table row.

            <th> stands for table heading.

To learn more...

1 .brainly.in/question/9012108

2. brainly.in/question/1373881

Similar questions