Welcome to Interactive Programming Forums, where you can ask questions, receive answers from other members of the community, post code snippets and post exercies.

trouble on 2 exercise problem 6 0f html

+2 votes
i cant make a 3 x 5 table with a row span of 3 please help
posted 11 years ago in HTML by Matthew Tembo (6,610 points)

1 Answer

0 votes
Please note that
<tr> </tr> creates a row     and     <td></td> creates a column.

this is the answer   but  i strongly recommend that u understand it and do it again yourself  or u won't be able to continue .Best of luck


<html>
<head>
<title></title>
</head>
<body>
<table border="1">
<tr>
<td rowspan="3">row span(1x1, 2x1)</td>
<td>cell 1x2</td><td>cell 1x2</td><td>cell 1x2</td><td>cell 1x2</td>
</tr>
<tr>
<td>cell 1x2</td><td>cell 1x2</td><td>cell 1x2</td><td>cell 1x2</td>
</tr>
<tr>
<td>cell 1x2</td><td>cell 1x2</td><td>cell 1x2</td><td>cell 1x2</td>
</tr>
</table>
</body>
</html>
answered 11 years ago by Abdullah Muhamed (2,500 points)

Related questions

+10 votes
1 answer
posted 11 years ago in HTML by Milad1991 (2,750 points)
+10 votes
1 answer
posted 11 years ago in HTML by Sigurður Jónsson (6,630 points)
+4 votes
1 answer
0 votes
1 answer
posted 11 years ago in HTML by Matthew Tembo (6,610 points)
0 votes
1 answer
posted 9 years ago in HTML by ldayton1229 (7,030 points)