HTML Table
HTML Table tag is used to display data in tabular form (row * column). There can be many columns in a row. We can create a table to display data in tabular form, using <table> element, with the help of <tr> , <td>, and <th> elements. Example: <!DOCTYPE html><html> <head> <title>HTML Tables</title> </head> <body> <table …