Advertisement
Guest User

date time

a guest
Apr 20th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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>Document</title>
  8. </head>
  9. <body>
  10.     <script>
  11.             var now = new Date();
  12.             var hours = now.getHours();
  13.             var minutes = now.getMinutes();
  14.  
  15.             var name = prompt("What is your name?");
  16.  
  17.  
  18.             if(hours < 12) {
  19.                 document.write("<h1>Good Morning  ");
  20.             }
  21.  
  22.             if(hours >= 12) {
  23.                 hours = hours - 12;
  24.                 if(hours < 6) {
  25.                     document.write("<h1>Good Afternoon  ");
  26.                 }
  27.                 if(hours>=6) {
  28.                     document.write("<span><h1>Good Evening ")
  29.                 }
  30.             }
  31.  
  32.             document.write(name + ", It is " + hours + ":" + minutes + " now");
  33.     </script>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement