JSFiddle - React, Tailwind, and code Playground

HTML

<iframe id="demo"></iframe>

JavaScript

var frame = document.getElementById("demo");
var html = 'data:text/html;charset=utf-8,' +encodeURI('<body>Hello</body>');
frame.src = html;