JSFiddle - React, Tailwind, and code Playground
by Arun Prasad 9946146920
HTML
<html>
<head>
<title>Welcome</title>
</head>
<script>
function ClickMe() {
document.getElementById("Age").value="25";
}
</script>
<body>
Age
<input id="Age" class="BgRed" type="text" style="color:pink">
<br><br>
Address
<textarea id="Address" class="BgRed">
</textarea>
<p>
Hello world
</p>
<input type="button" onClick="ClickMe();" value="PUSH ME">
</body>
</html>
CSS
.BgRed{
color:yellow;
text-transform: lowercase;
background-color: lightblue;
font-family: "Times New Roman", Times, serif;
.BgRed{
color:red;
}