Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. </head>
  5. <body>
  6. <input type="text" id='Text' placeholder="Input" >
  7. <button onclick="Input()">Input</button>
  8. <script>
  9. function Input() {
  10. let Text = document.getElementById('Text').value;
  11. for(let i = 0; i < Text.length; i++) {
  12. let testata = document.createElement('h1');
  13. testata.innerHTML = Text[i];
  14. document.body.appendChild(testata);
  15. }
  16. console.log(Text);
  17.  
  18. var NV= h1;
  19. }
  20. </script>
  21. <style>
  22. h1 {
  23. display: inline
  24. }
  25. </style>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement