JSFiddle - React, Tailwind, and code Playground

by Bruno Augusto

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>' );
});