Advertisement
Dennisaa

RoxyMusic01

Aug 29th, 2015
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.47 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.  
  4. <head>
  5.     <title>The basic stuff page</title>
  6.     <meta charset="utf-8">
  7.     <script>
  8.         function UpdateLyrics() {
  9.             var roxyMusic = document.getElementById("Paragraph01");
  10.             roxyMusic.innerHTML = "Make me a deal, and make it straight";
  11.         }
  12.         window.onload = UpdateLyrics;
  13.     </script>
  14. </head>
  15.  
  16. <body>
  17.     <p id="Paragraph01">What's your name, Virginia Plain?</p>
  18.     <p id="Paragraph02">Schooled with a belt by a qualified man</p>
  19. </body>
  20.  
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement