JSFiddle - React, Tailwind, and code Playground
HTML
<body onload="hello()">
<p id="Demo"></p>
</body>
JavaScript
function hello()
{
document.getElementById("Demo").innerHTML="lets go in an alto";
}
<body onload="hello()">
<p id="Demo"></p>
</body>
function hello()
{
document.getElementById("Demo").innerHTML="lets go in an alto";
}