This is my first time doing something like this, & I would like to make something like the typing text on this site: https://mtzioncode.github.io/
My index.html is (copied from somewhere else)
<h1>Uh</h1
<style src = "style.css"></style>
<link rel="stylesheet" type="text/css" href="style.css" />
/* 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;
}
My style.css is (again, copied from somewhere else)
/* 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;
}
The website looks like this
How do i add something like that to my website? Thanks in advance.