Tutor 7 Tables 2 the next level in tables
By the way <br> is like a carriage return (cr) or add a blank line or end a line.
Here are some more things you can do with table controls.


This is message table 1 with yellow background and a border of 10 no cell or row background colors with the table cell text centered.
John 3:16
For God so loved the world, that he gave his only begotten Son,
that whosoever believeth in him should not perish, but have everlasting life.



This is message table 2 with yellow background and a border of 10 with cell bgcolor lightblue
the table cell text centered note yellow lines from table background.
John 3:16
For God so loved the world, that he gave his only begotten Son,
that whosoever believeth in him should not perish, but have everlasting life.



This is message table 3 with yellow background and a border of 10 with 3 cells 1 20% no background cell 2 60% bgcolor lightblue cell 3 20% no background
note yellow lines from table background.
John 3:16
For God so loved the world, that he gave his only begotten Son,
that whosoever believeth in him should not perish, but have everlasting life.



This is message table 4 with yellow background and a border of 10 with 3 cells 1&3 20% same color background cell 2 60% bgcolor lightblue
note yellow lines from table background.
John 3:16
For God so loved the world, that he gave his only begotten Son,
that whosoever believeth in him should not perish, but have everlasting life.
Below is listed the html to create all of the above tables divided by lines for each table

<table align="center" border="10" width="100%" title="Message Table1" bgcolor="yellow">
<tr align="center" >
<td align="center" width="90%">
<b>John 3:16<br>
For God so loved the world, that he gave his only begotten Son,<br>
that whosoever believeth in him should not perish, but have everlasting life.<br></b>
</td></tr>
</table>


<table align="center" border="10" width="100%" title="Message Table2" bgcolor="yellow">
<tr align="center" >
<td align="center"  bgcolor="#ccffff">
<b>John 3:16<br>
For God so loved the world, that he gave his only begotten Son,<br>
that whosoever believeth in him should not perish, but have everlasting life.<br></b>
</td></tr>
</table>


<table align="center" border="10" width="100%" title="Message Table3" bgcolor="yellow">
<tr align="center" >
<td align="center" width="20%"></td>
<td align="center" width="60%" bgcolor="#ccffff">
<b>John 3:16<br>
For God so loved the world, that he gave his only begotten Son,<br>
that whosoever believeth in him should not perish, but have everlasting life.<br></b>
</td>
<td align="center" width="20%"></td>
</tr>
</table>


<table align="center" border="10" width="100%" title="Message Table4" bgcolor="yellow">
<tr align="center" >
<td align="center" width="20%" bgcolor="#3366ff"></td>
<td align="center" width="60%" bgcolor="#ccffff">
<b>John 3:16<br>
For God so loved the world, that he gave his only begotten Son,<br>
that whosoever believeth in him should not perish, but have everlasting life.<br></b>
</td>
<td align="center" width="20%" bgcolor="#3366ff"></td>
</tr>
</table>