JSFiddle - React, Tailwind, and code Playground

HTML

<div id="nfy_area"></div>

JavaScript

var nfy = document.getElementById('nfy_area');
var img = document.createElement('img');
img.setAttribute('src', 'http://s3.hubimg.com/u/289118_50.jpg');
nfy.innerHTML = "This will take a few minutes. Please be patient...";
nfy.appendChild(img);