Advertisement
userlogin123

Escrever no HTML com innerHTML

Aug 20th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.29 KB | None | 0 0
  1. <html>
  2. <body>
  3.  
  4. <h1>My First Web Page</h1>
  5. <p>My First Paragraph</p>
  6.  
  7. <p id="demonstracao"></p>
  8.  
  9. <script>
  10.  
  11. // Changing the innerHTML property of an HTML element is a common way to display data in HTML.
  12. document.getElementById("demonstracao").innerHTML = 4 + 3;
  13. </script>
  14.  
  15. </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement