Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
Please reply asap.
I wanted to implement two html table side by side in mail body through talend.
After that I want to write some paragraph.
But I am not getting the desired result. instead i am getting this:
Below is the code:
<table border="3" BGCOLOR="white" align='left' cellpadding="8" style ="float: left" >
<tr>
<td><b><font color="red">Table 1</b></td>
</tr>
<table border="3" BGCOLOR="white" align='left' cellpadding="8" style ="float: right" >
<tr>
<td ><b><font color="orange">Table 2</b></td>
</tr>
<p>End of the statement</p>
Thanks
Its a problem with your html code, try to fix it first.
Thanks for the reply. I have made some changes to the above code, but still not getting the output.:
<table border="3" BGCOLOR="white" align='left' cellpadding="8" style ="float: left" >
<tr>
<td ><b> <font color="red">Table 1</b></td>
</tr>
</table>
<table border="3" BGCOLOR="white" align='left' cellpadding="8" style ="float: right" >
<tr>
<td ><b> <font color="orange">Table 2</b></td>
</tr>
</table>
<p>End of the statement</p>
output:
If anyone know how to resolve this bug, please answer asap.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<table border="3" BGCOLOR="white" align='left' cellpadding="8" style ="float: left" >
<tr>
<td ><b> <font color="red">Table 1</b></td>
</tr>
</table>
<table border="3" BGCOLOR="white" align='left' cellpadding="8" style ="float: left" >
<tr>
<td ><b> <font color="orange">Table 2</b></td>
</tr>
</table>
<br>
<br>
<p>End of the statement</p>
</body>
</html>
try with this code