Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h3>Your Screen:</h3>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML =
"Total width/height: " +  screen.width + "*" + screen.height + "<br>" +
"Available width/height: " + screen.availWidth + "*" + screen.availHeight + "<br>" +
"Color depth: " + screen.colorDepth + "<br>" + 
"Color resolution: " + screen.pixelDepth;
</script>
</body>
</html>