Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function test()
{
window.moveTo(0,0);
var winW = (screen.width*0.35);
var winH = (screen.height*.35);
window.resizeTo(winW, winH);
}
<BODY ONLOAD="test()">
function test()
{
var winW = (screen.width*0.35);
var winH = (screen.height*0.35);
var winX = (screen.width - winW);
var winY = 0;
window.moveTo(winX, winY);
window.resizeTo(winW, winH);
}