Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  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.  
  11. <script>
  12.  
  13. let kolor=prompt("Podaj kolor: 1-zielony lub 2-czerwony");
  14. if((kolor==1|kolor=="zielony"))
  15. {
  16. document.write("Zdecydowałeś się na kolor<font color=green>zielony</font><br>");
  17. }
  18. else
  19. if((kolor==2|kolor="czerwony"))
  20. {
  21. document.write("Zdecydowałeś się na kolor<font color=red>czerwony</font><br>");
  22. }
  23. else
  24. {
  25. document.write("Podałeś nieprawidłową wartość<br>");
  26. }
  27.  
  28. </script>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement