<div class="typing-text">
Typing Text Animation using only css!
</div>
/* typing effect */
.typing-text{
width: 37ch;
animation: typing 2s steps(38), blink .5s step-end infinite alternate;
white-space: nowrap;
overflow: hidden;
border-right: 3px solid;
font-family: monospace;
font-size: 20px;
}
/* keyfranes animation */
@keyframes typing{
from{
width: 0;
}
}
@keyframes blink {
50% {
border-color: transparent
}
}
Interested in working together?