Quick Animation Project

<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 55px;
height: 55px;
background-color: blue;
position: relative;
-webkit-animation-name: example;
-webkit-animation-duration: 5s;
animation-name: example;
animation-duration: 5s;

}
@-webkit-keyframes example {
0% {background-color:blue; right:0px; top:0px;}
25% {background-color:blue; right:200px; top:0px;}
50% {background-color:blue; right:200px; top:200px;}
75% {background-color:blue; right:0px; top:200px;}
100% {background-color:blue; right:0px; top:0px;}
}
@keyframes example {
0% {background-color:blue; left:0px; top:0px;}
25% {background-color:blue; left:200px; top:0px;}
50% {background-color:blue; left:200px; top:200px;}
75% {background-color:blue; left:0px; top:200px;}
100% {background-color:blue; left:0px; top:0px;}
}
</style>
</head>
<body>
<p><b></b> Sezan Likes Squares, Sezan likes blue.</p>
<div></div>
</body>
</html>