JSFiddle - React, Tailwind, and code Playground

by nobuts

HTML

<div id="content">
  <h1>Hello world</h1>
  <i>Hi everybody</i>
</div>

JavaScript

var a = document.body.appendChild(
  document.createElement("a")
);
a.download = "export.html";
a.href = "data:text/html," + document.getElementById("content").innerHTML;
a.innerHTML = "[Export conent]";