Move

				
					<!DOCTYPE html>
<html>
<body>
<h1>Move</h1>
</body>
</html>
				
			
				
					<style>
div {
  height: 20%;
 width:8%;
  position: relative;
  animation-name: example;
  animation-duration: 4s;
  animation-delay: 2s;
  text-align: center;
}
@keyframes example {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:red; left:100px; top:0px;}
  50%  {background-color:red; left:100px; top:100px;}
  75%  {background-color:red; left:0px; top:100px;}
  100% {background-color:red; left:0px; top:0px;}
}
</style>