JSFiddle - React, Tailwind, and code Playground
HTML
<h1>
Mi pagina web
</h1>
<button onclick="saludar()">Saludame</button>
<input type="text" id="nombre">
CSS
h1 {
color: red;
font-family: helvetica;
font-weight: 100;
text-align: center;
font-size: 60px;
color: gray;
}
JavaScript
function saludar() {
alert('Hola ' + document.getElementById('nombre').value);
}