Sesión 11 de html y css
Este es el html que he usado: <!DOCTYPE html> <head> <title>Primeras tablas</title> <meta charset="utf-8"> <link type="text/css" rel="stylesheet" href="Prueba sesión 10.css"> </head> <body> <h1>Tablas básicas en html</h1> <table> <tr> <th>Nombre</th> <th>Apellidos</th> <th>Blog</th> </tr> <tr> <td>Fernando</td> <td>del Pino</td> <td>https://diariodemilor.blogspot.com/</td> </tr...