πŸ“

010 google font와 icon

<!DOCTYPE html> <html> <head> <title>Document</title> <style> @keyframes μ• λ‹ˆ { 50%{ transform: translate(200px, 0); } 100%{ transform: translate(200px, 200px); } } div{ background-color:red; width: 100px; height: 100px; transition: all 1s; animation: μ• λ‹ˆ 2s; } div:hover{ background-color: dodgerblue; width: 200px; height: 200px; } </style> </head> <body> <div>hello world</div> </body> </html>