Typed.js is a library that types. Enter in any string, and watch it type at the speed you've set, backspace what it's typed, and begin a new sentence for however many strings you've set.. typed-js
<!-- HTML -->
<div class="type-wrap">
<div id="typed-strings">
<span>Typed.js^500 is a <strong>JavaScript</strong> library.</span>
<span>It <em>types</em> out sentences.</span>
<span>`And` `then` `deletes` `them`.</span>
<span>Try it out!</span>
</div>
<span id="typed" style="white-space: pre">Typed</span>
</div>
<!-- Plugin Js -->
<script>
var typed = new Typed("#typed", {
stringsElement: '#typed-strings',
typeSpeed: 0,
backSpeed: 0,
backDelay: 500,
startDelay: 1000,
loop: false,
});
</script>