animated website using html and css
You can learn how to create animated website here:
https://youtu.be/y0kCvnQ4Ga8
animated website using html and css
You can learn how to create animated website here:
https://youtu.be/y0kCvnQ4Ga8
how to animate in css
<style>
.myclass{
background:red; /*DEFAULT VALUE*/
animation:colorchange 1s; /*ANIMATION PROPERTY [animation name, time duration]*/
}
@keyframes colorchange{
from{background:red} /*DEFAULT VALUE*/
to{background:blue} /*CHANGING VALUE*/
}
</style>
<body>
<div class="myclass"> ELEMENT </div>
</body>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us