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.
<html>
<head>
<script>
var winCounter=0
function newWin(url,w,h,l,t){
winCounter++
var msg="<div id='win"+winCounter+"' style='position:absolute;border-style:outset;width:"+w+";height:"+h+";left:+"+l+";top:"+t+";'>" +
"<div style='background-color:blue;text-align:right'><a href='' onclick='document.getElementById(\"win"+winCounter+"\").outerHTML=\"\";return false' style='color:white;font-weight:bold;'>X</a></div>" +
"<iframe src='"+url+"' width=100% height=100%></iframe></div>"
document.body.insertAdjacentHTML("beforeEnd", msg);
return document.getElementById("win"+winCounter);
}
</script>
</head>
<body onload="newWin('[URL unfurl="true"]http://google.com',500,400,20,20);"></body>[/URL]