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 language="JavaScript">
[green][b]// Change these values to fit your needs[/b][/green]
var alignRight = true;
var alignBottom = false;
var offsetX = 25;
var offsetY = 20;
function adjustDivs(){
var df=document.getElementById('divFloat');
df.style.left = alignRight ? document.body.clientWidth-(parseInt(df.offsetWidth)+offsetX) : offsetX;
df.style.top = alignBottom ? document.body.clientHeight-(parseInt(df.offsetHeight)+offsetY) : offsetY;
}
</script>
</head>
<body scroll=no leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onload="adjustDivs()" onresize="adjustDivs()">
<div id="divContent" style="position:absolute; width:100%; height:100%; overflow:auto;">
[green][b]<!-- Put your content that exists between the BODY tags here -->[/b][/green]
</div>
<div id="divFloat" style="position: absolute; left:0px; top:0px; background-color: #cccccc; width:200px; height:200px;">
[green][b]<!-- Put the content that you want to "float" here -->[/b][/green]
</div>
</body>
</html>