HTML Code:
<html>
<head>
<title>Table Demo</title>
<style type="text/css">
body {
font-family:verdana;
}
table.dsply {
border-collapse:collapse;
border:1px solid black
}
td.header {
border-bottom:1px solid black;
height:19px;
background:blue url(Image1.gif);
padding:0 0 2px 1ex;
color:white;
font-size:.95em
}
td.cntnt {
padding:0
}
</style>
</head>
<body>
<table class="dsply">
<tr>
<td class="header">Header</td>
</tr><tr>
<td class="cntnt">
<!--An Image with border="0" could go here instead of all this garbage-->
<br> <br> <font size=1>Content
here</font> <br> <br>
<!--End of Garbage-->
</td>
</tr>
</table>
</body>
</html>
Use with attached Image1.gif
Bookmarks