You are on page 1of 3

<html>

<head>

<style>

table

border:3px solid grey;

text-align: center

</style>

</head>

<body>

<table border=1px align="center" width=350 height=200 >

<tr>

<td rowspan=2 colspan=2>my table</td>

<td>a</td>

<td>b</td>

<td>c</td>

<td rowspan=3>d</td>

<td>e</td>

</tr>
<tr>

<td>f</td>

<td>g</td>

<td>h</td>

<td>i</td>

</tr>

<tr>

<td colspan=3>j</td>

<td rowspan=4>k</td>

<td rowspan=2>l</td>

<td>m</td>

</tr>

<tr>

<td>n</td>

<td>o</td>

<td rowspan=3>p</td>

<td>q</td>

<td>r</td>

</tr>

<tr>

<td>s</td>

<td rowspan=2>t</td>

<td>u</td>

<td>v</td>
<td>w</td>

</tr>

<tr>

<td>x</td>

<td colspan=2>y</td>

<td>z</td>

</tr>

</table>

</body>

</html>

You might also like