JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://opensourceaugie.com/js/texttype.js"></script>
<body></body>

CSS

body {
    background:black;
    color:#00FF00;
}

JavaScript

var id = 1;
var lala = new Array(
    'Hello World',
    'This is my new and fancy console!',
    'See how its typing?',
    'Isn\'t that cool ? ',
    'Try it out for yourself!');
lala.each(function (line) {
    id++;
    fullID = 'Div' + id;
    new Element('p', {
        'id': fullID
    }).inject($(document.body));
    texttype(fullID, line, 100, 100);
});