Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7. <title>Ulazni zadatak</title>
  8. <link rel="stylesheet" href="style.css" />
  9. </head>
  10. <body>
  11. <h1 id="nekiID"></h1>
  12. </body>
  13. <script>
  14. setInterval(function() {
  15. var date = new Date();
  16. document.getElementById('nekiID').innerHTML = date.getHours() + ':' + date.getMinutes() + ':' + date.getSeconds();
  17. }, 1000);
  18. </script>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement