Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <title>Document</title>
  7. </head>
  8.  
  9. <style>
  10.     body {
  11.         background-color: #21D4FD;
  12.         background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
  13.     }
  14.  
  15. </style>
  16.  
  17. <body>
  18.  
  19.     <script>
  20.         setTimeout(() => showAlert(), 1);
  21.  
  22.         function showAlert() {
  23.             alert("Вас приветствует учебный центр");
  24.             document.location.href = '1-2.html#resip';
  25.         }
  26.  
  27.     </script>
  28. </body>
  29.  
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement