Posts

Showing posts from August, 2020
Awesome Input Animation using HTML & CSS | Floating Label Animation <!DOCTYPE html> <!-- Created By techno-ahmad --> <html lang="en" dir="ltr">   <head>     <meta charset="utf-8">     <title>Input Animation | techno-ahmad</title>     <link rel="stylesheet" href="style.css">   </head>   <body>     <div class="wrapper">       <div class="input-data">         <input type="text" required>         <div class="underline"> </div> <label>Name</label>       </div> </div> </body> </html> CSS @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap'); *{   margin: 0;   padding: 0;   outline: none;   box-sizing: border-box;   font-family: 'Poppins', sans-serif; } body{   display: flex;   align-items: center;   justify-content: ce