Get the code of How to add Animation using Keyframes in CSS and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.
<div></div>div {
background: cyan;
width: 50px;
height: 50px;
animation: ramzan 5s infinite;
position: relative;
}
@keyframes ramzan {
from {left: 0px;}
to {left: 200px;}
}