Ict 9 Lesson 9
Ict 9 Lesson 9
COMMUNICATION TECHNOLOGY 9
WEB DEVELOPMENT
At the end of the session, the learners should be able to:
Sample
Name Age
Charloue Perales 14
Sample Code
<table border="1">
<tr>
<th colspan="2">Name</th>
<th>Age</th>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>25</td>
</tr>
<tr>
<td>Jane</td>
<td>Smith</td>
<td>30</td>
</tr>
</table>
02 rowspan
The rowspan attribute allows a cell to span across
multiple rows.
Syntax:
<td rowspan="number_of_rows">Content</td>
Sample
Name Name Age
Al Francis Bautista 15
Lombres
Sample Code
<table border="1">
<tr>
<th rowspan="2">Name</th>
<th>Age</th>
</tr>
<tr>
<td>25</td>
</tr>
<tr>
<td>Jane</td>
<td>30</td>
</tr>
</table>
<h1>Thank You!</h1>