Latest Web Design SEO Tips and Techniques

Powered by Suman Adhikari

Latest Web Design SEO Tips and Techniques

Define Webpage Resolution
This code is used to define resolution of any webpage. You need to copy the below code and paste into your webpage you want to define.

Code :
<script language="JavaScript1.2">
<!--
var correctwidth=1024
var correctheight=768
if (screen.width!=correctwidth
screen.height!=correctheight)
document.write("This webpage is best viewed with screen resolution "+correctwidth+"*"+correctheight+". Your current resolution is "+screen.width+"*"+screen.height+".")
//-->
</script>