476179

6.1Act1

Nov 1st, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>6</title>
  6. </head>
  7.  
  8. <body>
  9. <script>
  10.  
  11. var m = prompt("What is the capital of canada?");
  12.  
  13. if (m == "ottawa")
  14. {
  15. alert("correct!");
  16. }
  17. else if (m == "Ottawa")
  18. {
  19. alert("Correct!");
  20. }
  21. else
  22. {
  23. alert("incorrect.")
  24. }
  25.  
  26. </script>
  27. </body>
  28.  
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment