HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
📚
위니브 책 모음(공개 링크)
/
📝
2022 30분 요약 강좌 시즌1
/
📝
HTML & CSS (21년 8월 업데이트 완료)
/
📝
010 google font와 icon
📝

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>