3d Heart beat Animation in HTML & CSS (Pure CSS). HTML : <!DOCTYPE html> <html> <head> <title>Heart Beat Animation</title> </head> <body> <div id="heartbeat"> ♥</div> <br /><br /><br /> <br /> <p> Made with ♥ by : <a href="#">Sarthak Mund</a> </p> </body> </html> CSS : body { text-align:center; background-color:#CEFECE; margin-top:200px; } h1{ color:#e00; } #heartbeat{ font-size:100px; color:#e00; text-shadow:2px 2px 5px #970606, 1px 1px 5px #EC6363,1px 1px 5px #E42421; animation:animate.40s infinite alternate; transform-origin:center; } @keyframes animate { to { transform:scale(2);} } p{ color:red; } preview : Code available in :- Codepen Sololearn Youtube Instagram Facebook <b> Must Read :- </b> Blogger Tutorial C Programs C++ Programs Java Programs Python Programs Programming Notes  Questi…