1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<html> <head> <title>Products</title> </head> <body> <div> <table> <thead> <th>User</th> <th>Number of reviews</th> </thead> <tr> <td>bob</td> <td>2</td> </tr> </table> </div> </body> </html>