<html> <head> <style type="text/css"> .parrafo { background-color:blue; color: white; width: 250px; } </style> </head> <body> <p class="parrafo"> <b>Listado de usuarios:</b> </p> <table border="1"> <thead> <tr> <th>Nombre</th> <th>Dirección</th> <th>Correo</th> </tr> </thead> <tbody> <tr> <td>Javier</td> <td>La Merced 123</td> <td>javier@mail.com</td> </tr> <tr> <td>Rebeka</td> <td>Amazonas 115</td> <td>rebeka@mail.com</td> </tr> <tr> <td>Ferdinand</td> <td>Ambato 342</td> <td>ferdinand@mail.com</td> </tr> </tbody> </table> </body> </html>