Interactive Programming Forums
Login
Register
Home
Questions/Snippets/Exercises
Unanswered
Tags
Ask a Question
Post a Code Snippet
Post an Exercise
Welcome to Interactive Programming Forums, where you can ask questions, receive answers from other members of the community, post code snippets and post exercies.
All categories
Ruby
(3)
Python
(10)
PHP
(7)
Perl
(2)
SQL
(8)
Javascript
(6)
HTML
(20)
CSS
(4)
jQuery
(0)
XML
(3)
Code Snippets
(1)
Exercises
(4)
Other
(9)
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
12 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
12 years
ago
by
Abdullah Muhamed
(
2,500
points)
Related questions
+10
votes
1
answer
in html 2,exercise 5 i have problem please F1
posted
12 years
ago
in
HTML
by
Milad1991
(
2,750
points)
html
+10
votes
1
answer
Trouble with a html exercise (SOLVED)
posted
12 years
ago
in
HTML
by
Sigurður Jónsson
(
6,630
points)
html
+4
votes
1
answer
in html on the second exercises im struggeling to create a 2 x 4 table can some one help
posted
12 years
ago
in
HTML
by
Matthew Tembo
(
6,610
points)
0
votes
1
answer
html exercises 2 problem
posted
12 years
ago
in
HTML
by
Matthew Tembo
(
6,610
points)
0
votes
1
answer
The third exercise on Tutorial 1. How is this incorrect?
posted
10 years
ago
in
HTML
by
ldayton1229
(
7,030
points)