Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <script type="text/javascript">
  6.  
  7. var imie = prompt ("podaj swoje imie:", "");
  8. if (imie == null){
  9. document.write ("<H3>Wcisnąłeś przycisk anuluj. Nie chcesz podać swojego imienia?");
  10. }
  11. else {
  12. document.write ("Cześć " + imie + "!");
  13. }
  14. // Koniec kodu JavaScript -->
  15. </script>
  16. </head>
  17. <body>
  18.  
  19.  
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement