In html there are set of elements that are needed to create tables. Table can be created using <table> element.Each row of a tables are defines via <tr> element and each cell are defines via <td> element within <tr> element. So a basic structure of a table looks like: <table> <tr> <td>Cell</td> <td>Cell</td> </tr> <tr> […]
HTML Tables
