Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="pt-br">
- <meta charset="UTF-8">
- <head>
- <script>
- function display(){
- var name = prompt("Digite seu Nome");
- if(name!=null){
- document.getElementById("saida").innerHTML = "Olá, "+ name + "! Como vai você?!" ;
- }
- }
- </script>
- </head>
- <body>
- <input type = "button" value="Clique Aqui" onclick="display()">
- <p id = "saida"> </p>
- </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement