JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://unpkg.com/[email protected]/dist/core.js"></script>
<div id="app"></div>

JavaScript

var app = document.getElementById('app');

var typewriter = new Typewriter(app, {
    loop: true
});

typewriter.typeString('<strong>Human: </strong>')
		.typeString('Hello how are you?')
    .pauseFor(2500)
		.typeString('<br/>')
    .typeString('<strong>Bot: </strong>')
		.typeString('I am fine thanks, how are you?')
    .pauseFor(2500)
		.typeString('<br/>')
    .typeString('<strong>Human: </strong> ')
		.typeString('I am great!')
    .pauseFor(2500)
    .start();