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>
function hide(id) {
document.getElementById(id).style.visibility = "hidden"
}
function unhide(id) {
document.getElementById(id).style.visibility = "visible"
}
</script></head><body>
<input type="button" value="hide" onclick="hide('div1')" />
<input type="button" value="show" onclick="unhide('div1')" />
<div id="div1"
style="position:relative;left:50px;top:0px;
width:200px;height:200px;background:yellow;
border:medium solid red; padding:10px;
visibility:hidden">YOUR CONTENT HERE<br />
<div align="right">
<input type="button" value="Close" onclick="hide('div1')" />
</div></div><body></html>