5 mayo, 2026
TAREA PRÁCTICA
Vincular estilos al HTML 1. ESTILOS EN LÍNEA Archivo: inline.html <!DOCTYPE html> <html> <head> <title>Estilos en línea</title> </head> <body> <h1 style=”color: blue;”>Mi página web</h1> <p style=”font-size: 18px;”> Este es un párrafo de ejemplo. </p> <ul style=”color: green;”> <li>Elemento 1</li> <li>Elemento 2</li> <li>Elemento 3</li> </ul> </body> </html> 2. ESTILOS INTERNOS Archivo: interno.html <!DOCTYPE html> <html> <head> …
