Weltformat Graphic Design Festival Luzern
4. – 11.10.25
check the archive


<!DOCTYPE html>
<html>
<head>
<title> Weltformat Festival Countdown</title>
<style>
body { font-family: system-ui, sans-serif;
font-size: 24px;
background-color: #FFFFFF;
color: #000000;
margin: 40px auto;
width: 600px;
text-align: left; }
h1
{ font-size: 24px;
font-weight: normal;
margin-top: 100px; }
</style>

<script> function daysUntilRelease(
)
{ const today = new Date(); const releaseDate = new Date(); const timeDiff = releaseDate - today; const days = Math.ceil(timeDiff / (1000 * 60 * 60 * 24)); document.getElementById(‹countdown›).textContent = days + ‹ days until program release›; } window.onload = daysUntilRelease;
</script>
</head>
<body>
<h1 id=«countdown»>Loading...
</h1>
</body>
</html>