
Creating a good looking HTML table sounds easy but when it comes to actual execution, it is not as easy as it seems. Consider the following
most basic HTML textbook codes for a 3x3 HTML table:
<table border=1>
<tr><td>Apple</td><td>Book</td><td>Car</td></tr>
<tr><td>1</td><td>2</td><td>3</td></tr>
<tr><td>4</td><td>5</td><td>6</td></tr>
</table>
Here...