<script>
function mostraRisoluzione() {
const larghezza = window.screen.width;
const altezza = window.screen.height;
document.getElementById("risoluzione").innerHTML =
"<strong>" + larghezza + " x " + altezza + " Pixel</strong>";
}
mostraRisoluzione();
</script>