/* The animation */
@keyframes color-change {
from {
color: purple;
}
25% {
color: orange;
}
50% {
color: red;
}
75% {
color: blue;
}
to {
color: yellow;
}
}
/* The element */
h1 {
color: purple;
animation-name: color-change;
animation-duration: 5s;
}
The web site of lydiafizzle
Welcome to my Website!
Three Pink Columns
Column 1
This is the content of column 1.
Column 2
This is the content of column 2.
Column 3
This is the content of column 3.
This is a paragraph! Here's how you make a link: Neocities.
Here's how you can make bold and italic text.
Here's how you can add an image:
Here's how to make a list:
- First thing
- Second thing
- Third thing
To learn more HTML/CSS, check out these tutorials!