Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 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. <title>Document</title>
  7. <script>
  8. function stampa(){
  9. document.getElementById("input").value=document.getElementById("testo").innerHTML
  10. }
  11. </script>
  12. </head>
  13. <body>
  14. <b id="testo">Hello Word!!</b>
  15.  
  16.  
  17. <input id="input" type="text" style="width: 200px;">
  18. <button onclick="stampa()">Stampa</button>
  19. </body>
  20.  
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement