clock

来源:互联网 发布:网站备案域名不带www. 编辑:程序博客网 时间:2024/05/03 23:18
<HTML>
<HEAD>
 <TITLE>Demo of Applet showing world time</TITLE>
</HEAD>
<BODY>
 <P align=center>World time is a funny concept</P>
 <TABLE align=center>
  <TR>
   <TH>Japan<BR>(JT)</TH>
   <TH>China<BR>(CN)</TH>
   <TH>Universal<BR>(UTC/GMT)</TH>
   <TH>US Eastern<BR>(ET)</TH>
  </TR>
    <TR>
       <TD>
    <APPLET code=tz.class codeBase=="http://www.w3.org/Protocols/Time/"
 height=150 width=100 >
     <PARAM NAME="tz" VALUE="JST">
     <PARAM NAME="language" VALUE="en">
         <PARAM NAME="bgcolor" VALUE="ffffff">
         <PARAM NAME="color" VALUE="0000ff">
         <PARAM NAME="textcolor" VALUE="000000">
         <PARAM NAME="daycolor" VALUE="ffffff">
         <PARAM NAME="nightcolor" VALUE="000000">
         <PARAM NAME="seconds" VALUE="on">
     Your browser is not configured to show Java 1.1 applets. This would show a clock with the time in Japan.
    </APPLET>
   </TD>
   <TD>
    <APPLET code=tz.class height=150 width=100>
     <PARAM NAME="nightcolor" VALUE="000000">
     <PARAM NAME="color" VALUE="0000ff">
     <PARAM NAME="textcolor" VALUE="000000">
     <PARAM NAME="daycolor" VALUE="ffffff">
     <PARAM NAME="seconds" VALUE="on">
     <PARAM NAME="bgcolor" VALUE="ffffff">
    </APPLET>
   </TD>
   <TD>
    <APPLET code=tz.class height=150 width=100>
     <PARAM NAME="language" VALUE="en">
     <PARAM NAME="tz" VALUE="UTC">
     <PARAM NAME="nightcolor" VALUE="000000">
     <PARAM NAME="color" VALUE="0000ff">
     <PARAM NAME="textcolor" VALUE="000000">
     <PARAM NAME="daycolor" VALUE="ffffff">
     <PARAM NAME="seconds" VALUE="on">
     <PARAM NAME="bgcolor" VALUE="ffffff">
    </APPLET>
   </TD>
   <TD>
    <APPLET code=tz.class height=150 width=100>
     <PARAM NAME="tz" VALUE="EST">
     <PARAM NAME="language" VALUE="en">
     <PARAM NAME="nightcolor" VALUE="000000">
     <PARAM NAME="color" VALUE="0000ff">
     <PARAM NAME="textcolor" VALUE="000000">
     <PARAM NAME="daycolor" VALUE="ffffff">
     <PARAM NAME="seconds" VALUE="on">
     <PARAM NAME="bgcolor" VALUE="ffffff">
    </APPLET>
   </TD>
  </TR>
 </TABLE>
</BODY>
</HTML>