Guest User

Untitled

a guest
Oct 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>DND time Tracker</title>
  7. </head>
  8. <body>
  9. <h1 id='demo'> </h1>
  10. <script>
  11. var hour = parseInt(prompt("Enter a Value", "0"), 10);
  12. var minute = parseInt(prompt("Enter a Value", "0"), 10);
  13. var colun=":"
  14. var n1=1
  15.  
  16. document.getElementById("demo").innerHTML=hour+colun+minute
  17.  
  18. function myFunction() {
  19. document.getElementById("hour +1").innerHTML = hour+n1+colun+minute;
  20.  
  21. }
  22.  
  23. </script>
  24. <h1 id='demo'> </h1>
  25.  
  26. <button onclick="myFunction()">Hour +1</button>
  27. <p id="hour +1"></p>
  28.  
  29. </body>
  30. </html>
Add Comment
Please, Sign In to add comment