<button id="bottone">Clicca qui!</button>
<p id="messaggio" class="nascosto">Ciao!</p>
.nascosto {
  display: none;
}

* {
  font-family: sans-serif;
  font-size 18px;
  font-weight: bold;
}
var bottone = document.getElementById('bottone');
var messaggio = document.getElementById('messaggio');

bottone.onclick = function() {
  messaggio.classList.toggle('nascosto');
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.