Advertisement
Sergio_Istea

hora actual

Nov 21st, 2024
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 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. <title>Hora Actual</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. text-align: center;
  11. margin-top: 20%;
  12. }
  13. .time {
  14. font-size: 2rem;
  15. color: #333;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <h1>Hora Actual</h1>
  21. <div class="time" id="time">Cargando...</div>
  22.  
  23. <script>
  24. function updateTime() {
  25. const now = new Date();
  26. const timeString = now.toLocaleTimeString();
  27. document.getElementById('time').textContent = timeString;
  28. }
  29.  
  30. setInterval(updateTime, 1000); // Actualiza cada segundo
  31. updateTime(); // Inicializa con la hora actual
  32. </script>
  33. </body>
  34. </html>
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement