the site doesnt work on pc (ie6), anyway i bet its just a javascript
code, quite easy to do actually. here is a clock field (u need to
make a form named clockform and a field named clockfield:
function showTime() {
_d=new Date();
_h=_d.getHours();
_m=(_d.getMinutes()<10)?'0':'';
_m+=_d.getMinutes;
_s=(_d.getSeconds()<10)?'0':'';
_s+=_d.getSeconds();
clockform.clockfield.value=_h+':'+_m+':'+_s;
clock=setTiemout("showTime()", 500);
}
showTime();
for dp2+ replace clockform.clockfield by document.forms[0].clockfield
and make sure the form is the first of the page
--- In DreamcastBrowsers@yahoogroups.com, "duc59" <duc12@m...> wrote:
> http://geocities.com/dreamcastv/frameset
> I think this is one of the coolest site create by a DC and very
useful for dc user trying to create a website, I really interest how
he make that clock, because he uses frame so i have difficult time
looking for that html, if you have a pc i tink it more easy to find
it out. thx.