Question 1199948
<font color=black size=3>
Algebra.com uses html table formatting.


See this tutorial for more information:
<a href = "https://www.w3schools.com/html/html_tables.asp">https://www.w3schools.com/html/html_tables.asp</a>


If you wish to use software to automatically generate a table, then this is one good option:
<a href = "https://www.tablesgenerator.com/html_tables">https://www.tablesgenerator.com/html_tables</a>
Be sure to turn on the "Do not generate CSS" checkbox. There isn't a way to use CSS through algebra.com


That second link, while useful, doesn't provide an automatic way to draw in separator lines. You'll have to edit the code manually if you want them.
Add in bit of code <font color=blue>border=1</font> to the first "table" tag to have it draw in cell borders, aka divider lines.


In other words, the first tag of 
&lt;table&gt;
will be updated to
&lt;table <font color=blue>border=1</font>&gt;
so the borders are drawn in


Another useful trick is to give each cell buffer room or padding.
Use the aptly named <font color=red>cellpadding</font> tag.
I tend to use a padding of 5


This updates 
&lt;table <font color=blue>border=1</font>&gt;
into
&lt;table <font color=blue>border=1</font> <font color=red>cellpadding=5</font>&gt;


---------------------------------------------------------


Example:


This table
<table border=1 cellpadding=5><tr><td>100</td><td>200</td><td>300</td></tr><tr><td>400</td><td>500</td><td>600</td></tr></table>
is generated by this html code
<font color=blue>&lt;table border=1 cellpadding=5&gt;&lt;tr&gt;&lt;td&gt;100&lt;/td&gt;&lt;td&gt;200&lt;/td&gt;&lt;td&gt;300&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;400&lt;/td&gt;&lt;td&gt;500&lt;/td&gt;&lt;td&gt;600&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</font>


Often it helps to break the code into separate lines like so
<font color=blue>&lt;table border=1 cellpadding=5&gt;
&lt;tr&gt;&lt;td&gt;100&lt;/td&gt;&lt;td&gt;200&lt;/td&gt;&lt;td&gt;300&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;400&lt;/td&gt;&lt;td&gt;500&lt;/td&gt;&lt;td&gt;600&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</font>
Each &lt;tr&gt; tag gets its own line.


This is what the table looks like without the cellpadding command.
<table border=1><tr><td>100</td><td>200</td><td>300</td></tr><tr><td>400</td><td>500</td><td>600</td></tr></table>Things look a bit crammed in my opinion.


---------------------------------------------------------


Another Example:


Table
<table border=1 cellpadding=5>
<tr><td>100</td><td>200</td></tr>
<tr><td>300</td><td>400</td></tr>
<tr><td>500</td><td>600</td></tr>
</table>


Code
<font color=blue>&lt;table border=1 cellpadding=5&gt;
&lt;tr&gt;&lt;td&gt;100&lt;/td&gt;&lt;td&gt;200&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;300&lt;/td&gt;&lt;td&gt;400&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;500&lt;/td&gt;&lt;td&gt;600&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
</font>


Have a try at other examples. Let me know if you have any questions.
</font>