HTML markup for a simple table
<!DOCTYPE html> <html> <head><title></title></head> <body> <table> <caption>total table items</caption> <tr> <th></th> <th>lunch</th> <th>dinner</th> </tr> <tr> <th>kitchen</th> <td>23</td> <td>30</td> </tr> <tr> <th>dining room</th> <td>31</td> <td>45</td> </tr> </table> </body> </html>