Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h2>My First Web Page</h2>
  6. <p>My first paragraph.</p>
  7.  
  8. <p>Never call document.write after the document has finished loading.
  9. It will overwrite the whole document.</p>
  10.  
  11. <script>
  12. document.write(5 + 6);
  13. </script>
  14.  
  15. </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement