Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <html>
  2. <head><title>Countdown Event</title>
  3.  
  4. <style type="text/css">
  5. body {background-image:url('scene.jpg');
  6. background-repeat:no-repeat;
  7. text-align:center;}
  8. h1 {font-size:40px;}
  9. </style>
  10.  
  11. </head>
  12.  
  13. <body>
  14.  
  15. <h1> Christmas Countdown</h1><br><br><br><br>
  16.  
  17. <SCRIPT LANGUAGE="JavaScript">
  18.  
  19. <!-- Begin
  20. var date = new Date("June 8th, 2018");
  21. var description = "the end of school";
  22. var now = new Date();
  23. var diff = date.getTime() - now.getTime();
  24. var days = Math.floor(diff / (1000 * 60 * 60 * 24));
  25.  
  26. document.write("<h1>")
  27. if (days > 2) {
  28. document.write(days + " days until " + description);
  29. }
  30. else if (days <= 2 && days > 1) {
  31. document.write("Only two days until " + description);
  32. }
  33. else if (days <= 1 && days > 0) {
  34. document.write("Tomorrow is " + description);
  35. }
  36. else if (days <= 0 && days > -1) {
  37. document.write("It's " + description + " ...Hooray!");
  38. }
  39. else {
  40. document.write("School is over loser.")
  41. }
  42.  
  43. document.write("</h1>");
  44. // End -->
  45.  
  46. </script>
  47.  
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement