Math, asked by sohail797, 10 months ago

When comping two equ from where 18d has came

Answers

Answered by XxDarkHeartxX
6

<!DOCTYPE html>

<html>

<head>

<style>

#myDIV {

width: 300px;

height: 200px;

background: red;

animation: mymove 5s infinite;

}

@keyframes mymove {

from {background-color: red;}

to {background-color: blue;}

}

</style>

</head>

<body>

<h1>Animation of background-color</h1>

<p>Gradually change the background-color from red to blue:<p>

<div id="myDIV"></div>

<p><strong>Note:</strong> CSS Animations do not work in Internet Explorer 9 and earlier versions.</p>

</body>

Similar questions