Advertisement
amoussa11

The <script> Tag

Feb 17th, 2019
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h2>JavaScript in Body</h2>
  6.  
  7. <p id="demo"></p>
  8.  
  9. <script>
  10. document.getElementById("demo").innerHTML = "My First JavaScript";
  11. </script>
  12.  
  13. </body>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement