JSFiddle - React, Tailwind, and code Playground

by ovfiddle

HTML

<a href="#" id="link" download="index.html">download me</a>

JavaScript

$('#link').on('click', function(e){
    this.href = URL.createObjectURL(new Blob([document.documentElement.outerHTML, '<!--saved with the awsome ovfiddle tool :)-->'] , {type:'text/html'}));
});