Write html code to produce following table
Attachments:
Answers
Answered by
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
Answered by
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
Hindi,
6 months ago
Science,
6 months ago
Social Sciences,
1 year ago
Social Sciences,
1 year ago
Geography,
1 year ago