請把以下的編碼放於<head></head>之內

<style type="text/css">
<!-- .time{font-family : Comic Sans Ms;
font-size : 14pt;font-weight : bold;color: #00008D;}-->
</style><style type="text/css"><!-- .time{
font-family : Comic Sans Ms;font-size : 14pt;
font-weight : bold;color: #00008D;}-->
</style>
<script Language="JavaScript">
<!-- Hiding
var ctimer;
function init(){
if (document.all){
tim2.style.left=tim1.style.posLeft;
tim2.style.top=tim1.style.posTop+tim1.offsetHeight-6;
settimes();
}
}
function settimes(){
var time= new Date();
hours= time.getHours();
mins= time.getMinutes();
secs= time.getSeconds();
if (hours<10)
hours="0"+hours;
if(mins<10)
mins="0"+mins;
if (secs<10)
secs="0"+secs;
tim1.innerHTML=hours+":"+mins+":"+secs
tim2.innerHTML=hours+":"+mins+":"+secs
ctimer=setTimeout('settimes()',960);
}
// --></script>

請把以下的編碼放於<body></body>之內

<body onload="init()"?
<DIV class=time id=tim1
style="HEIGHT: 20px; LEFT: 350px; POSITION: absolute; TOP: 160px; WIDTH: 10px"></DIV>
<DIV class=time id=tim2
style="FILTER: flipv() alpha(opacity=20); FONT-STYLE: italic; POSITION: absolute"></DIV>
</body>