JSFiddle - React, Tailwind, and code Playground
by Hemanth HM
HTML
<template id="xkcd">
<img src="">
</template>
JavaScript
var t = document.querySelector('#xkcd');
t.content.querySelector('img').src ='https://imgs.xkcd.com/comics/random_number.png';
var clone = document.importNode(t.content, true);
document.body.appendChild(clone);