Blame view
sources/3rdparty/phpdocx/pdf/www/test/table_01.html
225 Bytes
|
31b7f2792
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<html>
<head>
<style>
TABLE {
border: 3px, solid, #eeeeee;
}
</style>
</head>
<body>
<table border="3">
<tr>
<td colspan="2">Title</td>
</tr>
<tr>
<td>Kaire</td>
<td>Desine</td>
</tr>
</table>
</body>
</html>
|