<div></div>
div{

    width: 100px;
    height: 100px;
    position: relative;
    background-color: maroon;
    animation-name: mymove;
    animation-duration: 4s;
    animation-delay: 2s;
  animation-timing-function: linear;

}
@keyframes mymove {
  0%   {left: 0px; top: 0px;}
  100%  {left: 150px; top: 0px;}
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.