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.0 Transitional//EN">
<html>
<head>
<title>Listing 5.4</title>
<script type="text/javascript">
<!--
endzeit = new Date(2006,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"> [b]Sekunden[/b] bis zum Jahr 2006.
</form>
</body>
</html>