Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>6</title>
- </head>
- <body>
- <script>
- var m = prompt("What is the capital of canada?");
- if (m == "ottawa")
- {
- alert("correct!");
- }
- else if (m == "Ottawa")
- {
- alert("Correct!");
- }
- else
- {
- alert("incorrect.")
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment