Skip to main content

Posts

Aesthetic Car Animation !!!

HTML CODE: <! DOCTYPE html > < html lang = "en" >     < head >         < meta charset = "UTF-8" >         < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < meta http-equiv = "X-UA-Compatible" content = "ie=edge" >         < title > Car </ title >         < link rel = "stylesheet" href = "mustang.css" >     </ head >     < body >         < div class = "night" >             < div class = "surface" ></ div >             < div class = "car" >                 < img src = "./Img_06.png" alt = "" >             </ div >         </ div >     </ body > <...

Dancing Cat Animation

 HTML CODE: <! DOCTYPE html > < html lang = "en" >   < head >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" />     < title > Dancing Cat </ title >     < link rel = "stylesheet" href = "cat.css" />   </ head >   < body >     < div class = "container" >       < div class = "face" >         < div class = "ear-l" ></ div >         < div class = "ear-r" ></ div >       </ div >       < div class = "hand-l" ></ div >       < div class = "hand-r" ></ div >       < div class = "leg-l" ></ div >       < div class = "leg-r" ></ div >       < div class = "music-note" ></ div >     ...

Animated amongus !!!

HTML CODE: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Among Us </ title >     < link rel = "stylesheet" href = "amongus.css" > </ head > < body >     < div class = "player" >         < div class = "visor" ></ div >         < div class = "backpack" ></ div >         < div class = "leg front" ></ div >         < div class = "leg back" ></ div >         < div class = "shade" ></ div >     </ div > </ body > </ html > CSS CODE: html , body {     height : 100vh ; } body {     display : flex ;     align-items : center ; ...

Animated profile icon !!!

  HTML CODE: <! DOCTYPE html > < html > < head >   < meta charset = "utf-8" >   < meta name = "viewport" content = "width=device-width, initial-scale=1" >   < title > Profile animation </ title >   < link rel = "stylesheet" type = "text/css" href = "css/profile.css" > </ head > < body >   < div class = "wrapper" >     < div class = "border-circle" id = "one" ></ div >     < div class = "border-circle" id = "two" ></ div >     < div class = "background-circle" >       < div class = "triangle-light" ></ div >       < div class = "body" ></ div >       < span class = "shirt-text" > I </ span >       < span class = "shirt-text" > ♥ </ span >       < span class = "sh...