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>
<title>Untitled</title>
<script language="JavaScript" type="text/javascript">
<!--
function addDate(){
document.dateForm.date.value = Date();
return true;
}
//-->
</script>
</head>
<body>
<form action="page2.html" method="post" name="dateForm" onsubmit="return addDate();">
<input type="hidden" name="date" value="" />
<input type="submit" value="Submit" />
</form>
</body>
</html>