buona domenica a tutti
ho un piccolo problema....
allora, ho disegnato un orologio
poi ho aperto una nuova pagina nel mio sito
ho inserito il codice ed ho messo il link dell'orologio
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>OROLOGI</title>
<SCRIPT LANGUAGE="JavaScript">
navvers = navigator.appVersion.substring(0,1);
if (navvers > 3)
navok = true;
else
navok = false;
today = new Date;
numero = today.getDate();
if (numero<10)
numero = "0"+numero;
mois = today.getMonth();
if (navok)
annee = today.getFullYear();
else
annee = today.getYear();
mois++;
if (mois < 10)
mois = "0" + mois;
messageDate = numero + "/" + mois + "/" + annee;
function HeureCheck()
{
krucial = new Date;
heure = krucial.getHours();
min = krucial.getMinutes();
sec = krucial.getSeconds();
jour = krucial.getDate();
mois = krucial.getMonth()+1;
annee = krucial.getFullYear();
if (sec < 10)
sec0 = "0";
else
sec0 = "";
if (min < 10)
min0 = "0";
else
min0 = "";
if (heure < 10)
heure0 = "0";
else
heure0 = "";
DinaHeure = heure0 + heure + ":" + min0 + min + ":" + sec0 + sec;
which = DinaHeure
if (document.all){
dynamic3.innerHTML='<center>00:00:00</center>'
dynamic3.innerHTML='<FONT SIZE=1 FACE=" Arial"><B>'+which+'</B></FONT>';
}
else if (document.layers){
document.dynamic1.document.dynamic2.document.write (''+which+'')
document.dynamic1.document.dynamic2.document.close ()
}
tempo = setTimeout("HeureCheck()", 1000)
}
</SCRIPT>
</head>
<body onLoad="HeureCheck()" onUnload="clearTimeout(tempo)">
</bod>
<table border="0" cellspacing="0" cellpadding="0" width="50" height="50">
<tr>
<td bgcolor="#DC143C" style="border: 1 solid #9999FF " >
<table summary="" border="0" width="100%" height="100%">
<tr>
<!-- couleur fond et texte -->
<td background="#000066"><CENTER>
<font color="#1A1239">
<!-- fin couleur fond et texte -->
<FONT SIZE=1 FACE="arial"><B><SCRIPT LANGUAGE="JavaScript"> document.write(messageDate); </SCRIPT>
</B></FONT>
<!-- image ici --><img src="http://tizianaworld79.altervista.org/cartella/orologio1.gif" border="0" width="87" height="108">
<!-- fin image ici -->
<ilayer id="dynamic1" width=100% height=15><layer id="dynamic2" width=100% height=15><div id="dynamic3"></div></layer></ilayer>
</font></CENTER>
</td>
</tr>
</table> </tr>
</table>
</body>
</html>
adesso, come faccio ad inserire l'immagine
nella pagina degli orologi? che codice devo scrivere?
perche' se io a parte salvo l'orologio
vedo solo il disegno...
grazie mille
kissottoniiiiiiii