Advertisement
Guest User

Untitled

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