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.
<iframe src="somePage.htm"></iframe>
<body onLoad="this.parent.style='height: 100px; width: 200px;'">
<iframe id="iframeName" src="iframe.html"></iframe>
<html>
<head>
<script>
function resizeMe(){
var ifrm = parent.document.getElementById("iframeName");
if(ifrm){
ifrm.style.height=document.body.scrollHeight + ifrm.offsetTop;
ifrm.style.width=document.body.scrollWidth + ifrm.offsetLeft;
}
}
</script>
</head>
<body onLoad="resizeMe()">