Infinite animation

Report a typo

Select all the correct ways to create infinite animation for the <h1> element.

A)

h1 {
  animation: infinite;
}

@keyframes color-change {
 from {
   color: red;
  }
 to {
   color: blue;
  }
}

B)

h1 {
  animation: color-change 3s;
}

@keyframes color-change {
  0% {
    color: red;
  }
  100% {
    color: blue;
  }
  0% {
    color: red;
  }
}

C)

h1 {
  animation: color-change 3s infinite;
}

@keyframes color-change {
 from {
   color: red;
  }
 to {
   color: blue;
  }
}

D)

h1 {
  animation: color-change 3s infinite;
}

@keyframes color-change {
  0% {
    color: red;
  }
  100% {
    color: blue;
  }
}

E)

h1 {
  animation: color-change 3s infinite;
}

@keyframes {
  0% {
    color: red;
  }
  100% {
    color: blue;
  }
}
Select one or more options from the list
___

Create a free account to access the full topic