Created
          March 27, 2013 05:17 
        
      - 
      
- 
        Save mnive93/5251857 to your computer and use it in GitHub Desktop. 
    html page using javascript to display time
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <html> | |
| <head> | |
| <script type="text/javascript"> | |
| function timer(){ | |
| var date = new Date(); | |
| var h, m; | |
| var s; | |
| var t = " "; | |
| h = date.getHours(); | |
| m = date.getMinutes(); | |
| s = date.getSeconds(); | |
| if (h <= 9) h = "0" + h; | |
| if (m <= 9) m = "0" + m; | |
| if (s <= 9) s = "0" + s; | |
| t += h + ":" + m + ":" + s; | |
| document.getElementById("tim").innerHTML = t; | |
| gizmo = setTimeout("timer()", 1000); | |
| } | |
| </script> | |
| <style type="text/css"> | |
| body | |
| { | |
| background-color:Black; | |
| } | |
| p | |
| { | |
| color:yellow; | |
| font-family:Comic San Ms; | |
| font-size:large; | |
| } | |
| #timer | |
| { | |
| margin-left:600px; | |
| margin-top:300px; | |
| width:100px; | |
| height:100px; | |
| bacground-color:Black; | |
| } | |
| </style> | |
| </head> | |
| <body onload="timer()"> | |
| <div id="timer"> | |
| <p id="tim"></p> | |
| </body> | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment