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.
<script language="JavaScript">
var today = new Date();
var h = today.getHours();
if (h >= 22 || h < 6) window.location.href="22-6.html";
else window.location.href="6-22.html";
</script>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><title></title>
<?php
$h = date("H");
if ($h >= 22 OR $h <6) echo "<meta http-equiv=\"refresh\" content=\"1; URL=22-6.html\">";
else echo "<meta http-equiv=\"refresh\" content=\"1; URL=6-22.html\">";
?>
</head><body></body></html>