<div>
<h1>Clique no botão abaixo e altere o seu estilo:</h1>
<button id="novaCor" onClick="cliqueBtn()">Clique aqui</button>
</div>
button {
font-size: 18px;
font-weight: 600;
background-color: aqua;
border-radius: 20px;
border: 0;
padding: 10px 60px;
cursor: pointer;
}
function cliqueBtn() {
document.getElementById("novaCor").style.background = "red";
document.getElementById("novaCor").style.color = "white"
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.