JSFiddle - React, Tailwind, and code Playground
by akang2
HTML
<html>
<body>
<p id="you">This is all you</p>
<p id="me">This is all me</p>
</body>
</html>
JavaScript
//Practicing changing the content through innerHTML
document.getElementById("you").innerHTML = "Don't look back";
var tryIt = document.getElementById("me");
tryIt.innerHTML = "Don't get scared now";