I would love to know how I can make the word "Sampletext" held in the div tag below, appear over the top of the image in the same table column, rather than below it, can anyone help me here please?
Code:
<html>
<head>
	<title> </title>
</head>

<body>

	<!-- HEADING TABLE-->
	<TABLE Id="tblHeading" border="0" cellpadding="0" cellspacing="0" width="800">
	<TR>
		<TD VAlign="Bottom" Style="Width:300px"><IMG SRC="images/samplepic.jpg"></TD>
		<TD Align="Right" VAlign="Bottom">
			<IMG SRC="images/samplepic2.jpg">
			<DIV>
				SampleText
			</DIV>
		</TD>
	</TR>
	</TABLE>

</body>
</html>