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 getIt()
{
var text = document.frames[0].document.body.innerHTML;
//remove <PRE></PRE> tags
text = text.substring(("<PRE>").length);
text = text.substring(0, text.indexOf("</PRE>"));
myText.value = text;
}//end getIt()
</script>
</head>
<body onload='getIt();'>
<textarea id='myText' rows='10' cols='60'></textarea>
<iframe src='text.txt' width='0' height='0'></iframe>
</body>
</html>