JSFiddle - React, Tailwind, and code Playground

HTML

<div id="girl_develop_it">
    Click me!
</div>

JavaScript

// Select the girl_develop_it div
var gdi_div = document.getElementById("girl_develop_it");

// Add the click event listener:
gdi_div.addEventListener("click", function(){

    // change the color
    this.style.color = "blue";
    
    // change the text
    this.innerHTML = "Now I'm blue!";
    
});