JSFiddle - React, Tailwind, and code Playground

HTML

<body>
    <div />
    Blah
</body>

JavaScript

var p = document.createElement("p");
p.innerHTML = "<p>Test</p>";
document.body.insertBefore(p, document.body.firstChild);
iughiuh