Want to carry on? Then let's see what we can do with your table.
Want to make the border thicker and a different color than black? Here's how to do it.
At the head of your table directly under <tbody> you will see the code:
<table style="border: 1px solid #000000;">
Change it to this: <table style="border: 3px solid #352ece;">
and you will see this:
You can make the border any thickness and color you like by changing the digit, 3 in this case, and the #hex color. Fancy a dashed border? Change the word solid to dashed and you will see this:
Don't worry if you don't know #hex color values, just click on the link below then click on the Google link and it will take you to a pdf of #hex color values. You can then save it as a file or folder for future reference.
Names and hex codes of the 256 RGB (web safe ... - Umsiko
Want to change the cell border color and color background color? Read on.
Tables baffle a lot of people - I've seen a lot of questions here about them - and without a plugin, going into HTML for some people can be very daunting.You've clearly explained tables in a very easy way to understand.
If I could add one thing, where you have "width: 123px;" - that can be changed to a percentage - so your table becomes a little bit responsive. eg. "width: 40%;" - then the table will adapt as much as possible to the size of screen it's being viewed on.
All the best, Mark