Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<html>
<head>
<script type="text/javascript">
function popUp(){
if(document.cookie){
return;
}else{
window.open('deinURL.de');
var valid = new Date();
var until = valid.getTime() + (24 * 60 * 60 * 1000);
document.cookie = "expires=" + until;
}
}
</script>
</head>
<body onLoad="popUp()">
</body>
</html>