<div class=”Container”
<div class=”Container”
<div class=”nav-wrapper”
<div class=”nav-link-wrapper”
<div class=”image-wrapper”
<a href=
/* The animation code */
@keyframes example {
0% {background-color: red;}
25% {background-color: yellow;}
50% {background-color: blue;}
100% {background-color: green;}
}
/* The element to apply the animation to */
div {
width: 100px;
height: 100px;
background-color: red;
animation-name: example;
animation-duration: 4s;
}
</html>