David Banjo
Animated emojis 😝ðŸĪŠ

😀😃😂

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> body{ margin: 0; display: flex; align-items: center; justify-content: center; height: 100vh; background-color:black; } .face{ width: 350px; height: 350px; background-color: rgb(222, 180, 43); border:2px solid black ; border-radius: 100%; } .eye1{ width: 70px; background-color: rgb(239, 230, 230); border-radius: 70%; margin: 60px; float: right; box-shadow:inset 3px 3px 4px } .eye2{ width: 70px; background-color: rgb(244, 240, 240); border-radius: 70%; margin-top: 40px; margin-left: 30px; float: right; font-size: large; box-shadow:inset 3px 3px 4px ; } .pup1{ width:30px ; height: 30px; margin: 20px; border: 2px solid rgb(40, 38, 38); border-radius: 100%; background-color: rgb(21, 22, 22); animation: move 2s linear infinite; } .pup2{ width: 30px ; height: 30px; margin: 20px; border: 2px solid rgb(23, 23, 23); border-radius: 100%; background-color: rgb(25, 25, 26); animation: move 2s linear infinite; } @keyframes move { 0%{ margin-top:0 auto; } 100% { margin-top: 40px; } } .lip { margin: 200px; margin-left: 90px; width: 150px; border-bottom: 4px double ; border-radius:0 0 80px 80px; background-color: rgb(34, 36, 36); transform: rotate(10deg); animation: smile 7s ease-in infinite; box-shadow:inset 3px 3px 4px } @keyframes smile { 0%{ width: 130px; height: 70px; } 50% { width: 130px; height:40px ; } 100%{ width:130px; height: 30px; } } .tounge{ width: 40px; height: 60px; background-color:rgb(223, 16, 16) ; border-radius: 0 0 20px 20px; margin-left: 30px; animation: toun 6s linear infinite; box-shadow:inset 4px 3px 4px red ; } @keyframes toun { 0%{ width: 70px; height: 0; } 100%{ width: 70px; height: 80px; } } </style> </head> <body> <div class="face"> <div class="eye1"><div class="pup1"></div></div> <div class="eye2"><div class="pup2"></div></div> <div class="lip"><div class="tounge"></div></div></div> </div> <script></script> </body> </html>
0+