how to lock device orientation using css and javascript

JavaScript
@media only screen and (orientation:portrait){
  body {
    height: 100vw;
    transform: rotate(90deg);
  }
}
Source

Also in JavaScript: