Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<form>
<input type="button" value="Mein Text" onclick="javascript:open_window('meine_datei.html')" />
</form>
<script language="javascript">
function open_window(url) {
window.open(url);
</script>