HTML tables are used to display data in a grid format. They consist of rows and columns, making it easy to organize and show information.
<table> <caption>Fruit and Price List</caption> <tr> <th>Fruit</th> <th>Price</th> </tr> <tr> <td>Apple</td> <td>$1</td> </tr> <tr> <td>Banana</td> <td>$0.5</td> </tr> </table>