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.
name
<form ...
onSubmit="return TWindow(this);">
function TWindow(tform)
{
msg=window.open("","msg","height=200,width=200,left=80,top=80");
msg.document.write("<html><title>Windows!</title>");
msg.document.write("<body bgcolor='white' onblur=window.close()>");
msg.document.write("<center>"+tform.name.value+"</center>");
msg.document.write("<center>page content here</center>");
msg.document.write("</body></html><p>");
return true;
}