Advertisement
luistavares

Refresh automático de páginas web

Sep 25th, 2021
1,847
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.43 KB | None | 0 0
  1. <html lang="pt-br">
  2.     <head>
  3.         <meta charset="utf-8">
  4.         <meta http-equiv="refresh" content="3">
  5.         <title>Refresh em página web</title>
  6.     </head>
  7.     <body>
  8.         <h1>Refresh automático de uma página web</h1>
  9.         <h3>
  10.             <script>            
  11.                 var data = new Date();            
  12.                 document.write(data);
  13.             </script>
  14.         </h3>
  15.     </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement