<!DOCTYPE html>
<html>
<body>
<h3>Your Screen:</h3>
<script>
document.write("Total width/height: ");
document.write(screen.width + "*" + screen.height);
document.write("<br>");
document.write("Available width/height: ");
document.write(screen.availWidth + "*" + screen.availHeight);
document.write("<br>");
document.write("Color depth: ");
document.write(screen.colorDepth);
document.write("<br>");
document.write("Color resolution: ");
document.write(screen.pixelDepth);
</script>
</body>
</html>
OUTPUT:
Your Screen:
Total width/height: 1366*768Available width/height: 1366*738
Color depth: 32
Color resolution: 32
0 comments:
Post a Comment
Thanks For Coming The Page.