blob: 28fa918fef0d6f815dbb390c4ff46952e215db95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<html>
<head>
<style>
img {background-color: yellow; height: 15px;}
td {background-color: blue}
</style>
</head>
<body>
<table>
<tr>
<td colspan=2>
<img width=350>
</td>
</tr>
<tr>
<td>
<table width=100%>
<tr>
<td>
<table>
<tr>
<td width=50%>
</td>
<td width=100>
</td>
<td width=50%>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td>
<img width=200>
</td>
</tr>
</table>
</body>
</html>
|