I've been attempting to implement the animate.css plugin into my code, but for some reason, I just can't seem to get it working properly. Can anyone point out where I may have made a mistake? Here is the code I am using:
<html>
<head>
<link rel="stylesheet" href="css/animate.css">
<style type="text/css">
.demo{
background-color:red;
width:100px;
height:100px;
margin:300px;
}
</style>
</head>
<body>
<div class="demo animated bounce"></div>
</body>
</html>
Both the animate.css file and this code snippet are saved on my desktop.