JSFiddle - React, Tailwind, and code Playground
HTML
<div id="usingText"></div>
<div id="usingHTML"></div>
CSS
p {
color: red;
}
JavaScript
$( document ).ready( function() {
$( '#usingText' ).text( '<p>Stack Overflow Português</p>' );
$( '#usingHTML' ).html( '<p>Stack Overflow Português</p>' );
});