Ciao grazie per la risposta!
Ho creato la classe "conta" in css e ci ho incluso il javascript,ma continua a non funzionare!
Ci sono altri errori?

Codice PHP:
<html>
<
head>
<
title>Timer</title>
</
head>

<
body>

<
link rel="stylesheet" href="stile.css" type="text/css/>

<div id="
conta">
<script type="
text/javascript">
 function countdown(a,m,g){
   var d = new Date(a,m,g).valueOf();
   var e = new Date().valueOf();
   var h = Math.round(e-d);

     dday=Math.abs(Math.floor(h/(60*60*1000*24)*1));
     dhour=Math.abs(Math.floor((h%(60*60*1000*24))/(60*60*1000)*1));
     dmin=Math.abs(Math.floor(((h%(60*60*1000*24))%(60*60*1000))/(60*1000)*1));
     dsec=Math.abs(Math.floor((((h%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1));
     document.getElementById('conta').innerHTML = 'Il Natale arriver&agrave; fra
'+dday+' giorni, '+dhour+' ore, '+dmin+' minuti e '+dsec+' secondi';
     setTimeout("
countdown("+a+","+m+","+g+")",1000);
}
</script>
</div>
</body>
</html>