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></title>
<script language="JavaScript">
function process(){
var t1 = document.form1.t1.value;
var t2 = document.form1.t2.value;
var t3 = document.form1.t3.value;
var stuff_for_cookie = "T1:" + t1 + " T2:" + t2 + "T3:" + t3 + "";
document.cookie = escape(stuff_for_cookie);
}
</script>
</head>
<body>
<form name="form1">
<h4>Text 1</h4>
<input type="text" size=15 name="t1"><br>
<h4>Text 2</h4>
<input type="text" size=15 name="t2"><br>
<h4>Text 3</h4>
<input type="text" name="t3"><br>
<input type="button" value="Submit" onClick="process()">
</form>
</body>
</html>
<html>
<body>
<script language="JavaScript">
var cookie_stuff = unescape(document.cookie);
</script>
<script language="JavaScript">
document.write (cookie_stuff);
</script>
</body>
</html>