JSFiddle - React, Tailwind, and code Playground
HTML
<p id="demo"> Insert Value here </p>
<script>
var carName = "Volvo";
document.getElementById("demo").innerHTML = carName;
</script>
CSS
<!DOCTYPE html>
<html>
<body>
<p id="demo">Display the result here.</p>
<script>
function myFunction(greetings){
document.getElementById("demo").innerHTML = "Hello World!"; };
myFunction();
</script>
</body>
</html>