CSS Typewriter Effect Animation Using Only CSS & HTML

Simple typewriterr effect animation using just css and html. In order to create this effect we will use keyframes css property and steps(). Typewriter Effect <!doctype html> <head> <meta name=”viewport” content=”width=device-width, initial-scale=1, user-scalable=no” /> <link rel=”profile” href=”https://gmpg.org/xfn/11″ /> <link rel=”stylesheet” href=”css/style.css”> </head> <body> <p class=”line-1 anim-typewriter”>Animation typewriter style using css steps()</p> </body> </html> CSS /*… Continue reading CSS Typewriter Effect Animation Using Only CSS & HTML