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.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Countdown</title>
<script type="text/javascript">
<!--
endzeit = new Date(2007, 0, 1, 0, 0, 0);
function countdown()
{
aktuell = new Date();
zeit = (endzeit - aktuell) / 1000;
document.countdown.dauer.value = Math.round(zeit);
setTimeout('countdown()', 1000);
}
-->
</script>
</head>
<body onLoad="setTimeout('countdown()', 0)">
<form name="countdown">
Es sind noch <input name="dauer" size="10" style="border:none;">
Sekunden bis zum Jahr 2007.
</form>
</body>
</html>