Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!doctype html> <html lang="es"> <head> <meta charset="utf-8"> <title>Animaciones básicas con CSS transition</title> </head> <body> <style> a { text-decoration: none; color: blue; font-size: 18px; font-family: Verdana,sans-serif; } a:hover { color: red; } a { transition: color 0.8s linear 0.2s; } </style> <a href="#">Pon el ratón encima</a> </body> </html>