Размер экрана в пикселях
<script>
const screenWidth = window.screen.width;
const screenHeight = window.screen.height;
document.write( `<p>Разрешение экрана в виртуальных пикселях: ${screenWidth}x${screenHeight}</p>` );
</script>
<script>
const screenWidth = window.screen.width;
const screenHeight = window.screen.height;
document.write( `<p>Разрешение экрана в виртуальных пикселях: ${screenWidth}x${screenHeight}</p>` );
</script>