Advertisement
MarceloSousa

Untitled

Sep 23rd, 2014
501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3.     <meta charset="UTF-8">
  4.     <head>
  5.         <script>        
  6.             function display(){
  7.             var name = prompt("Digite seu Nome");
  8.             if(name!=null){
  9.             document.getElementById("saida").innerHTML = "Olá, "+ name + "! Como vai você?!" ;
  10.             }
  11.             }
  12.         </script>
  13.     </head>
  14.     <body>
  15.     <input type = "button" value="Clique Aqui" onclick="display()">
  16.     <p id = "saida"> </p>
  17.     </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement