JSFiddle - React, Tailwind, and code Playground
by Imabot
HTML
<h1>.style</h1>
<p id="target">Text to be formatted.</p>
<button onclick="document.getElementById('target').style.fontWeight = 'bold';">Bold</button>
<button onclick="document.getElementById('target').style.fontStyle = 'italic';">Italic</button>
<button onclick="document.getElementById('target').style.textDecoration = 'underline';">underline</button>
<button onclick="document.getElementById('target').removeAttribute('style');">Reset</button>