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="vbscript">
Sub PrintIt
window.print()
End Sub
</script>
<body>
This is some info<br><br>
<input type=button onClick="PrintIt" value="Print">
</body>
</html>
<html>
<head>
<script language="javascript">
function PrintIt(){
window.print()
}
</script>
<body>
This is some info<br><br>
<input type=button onClick="PrintIt()" value="Print">
</body>
</html>