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">
function MoveIt(){
var z=document.forms.frmDemo
z.txt2.value = z.txt1.value
}
</script>
</head>
<body>
<form id=frmDemo>
Type here: <input type=text id=txt1 value=""><br>
<input type=button value=" Move " onClick="MoveIt()">
<input type=text id=txt2 value="" readonly><br>
</form>
</body>
<html>