html disable scrolling with keys
<script>
  /*
  These lines of code disable the funcionality of the arrow keys and the 
  space key
  */
  window.addEventListener("keydown", (e) => {
    switch(e.keyCode) {
      case 32: 
      case 37: 
      case 38: 
      case 39: 
      case 40:
        e.preventDefault();
        break;
      default:
        break;
    }
  });
</script>
