JSFiddle - React, Tailwind, and code Playground
by Ronny
HTML
<script src="https://github.com/chernikovalexey/Prevel/raw/master/prevel-min.js"></script>
CSS
body{ font-family: Courier}
div {font-weight: bold; font-size: 22px; color: green; font-family: David;}
JavaScript
var span = document.createElement('div');
span.innerHTML = 'Native';
span.style.cssText = 'color: red; text-decoration: underline;';
document.body.appendChild(span);