Advertisement
gabrielaozegovic

P11

Dec 22nd, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head><title>Vremenska stranica</title>
  3. </head>
  4.  
  5. <body>
  6.   Vrijeme uèitavanja stranice:
  7.   <script type="text/javascript">
  8.     now = new Date();
  9.  
  10.     document.write("<p>" + now + "</p>");
  11.  
  12.     time = "AM";
  13.     hours = now.getHours();
  14.     if (hours > 12) {
  15.         hours -= 12;
  16.         time = "PM"
  17.     }
  18.     else if (hours == 0) {
  19.         hours = 12;
  20.     }
  21.     document.write("<p>" + hours + ":" +
  22.                    now.getMinutes() + ":" +
  23.                    now.getSeconds() + " " +
  24.                    time + "</p>");
  25.   </script>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement