JSFiddle - React, Tailwind, and code Playground

HTML

<h1 id="head1">Heading 1</h1>
 <p>First line of text.</p>
 <p>Second line of text.</p>
 <p>Third line of text.</p>
 <img id ="picture" src="eightball.gif" alt="eight ball" />

CSS

p {background-color: yellow;}

JavaScript

var p = 100;
$(function(){
       var hText = "This is just some text.";
    $("h1").click(function(){
        $("p").text(hText);
    });
});