animated - Animate CSS not working -
i trying add animate.css website. trying out basic example.
<html> <link rel="stylesheet" type="text/css" href="animate.css"> <h1 class="animated infinite bounce">animate</h1> </html>
but not working. path absolutely correct. , working in xampp.
the link
tag has inside head
element.
<html> <head> <link rel="stylesheet" type="text/css" href="animate.css"> </head> <body> <h1 class="animated infinite bounce">animate</h1> </body> </html>
Comments
Post a Comment