Advertisement
Guest User

Untitled

a guest
Oct 29th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Home page</title>
  4. <script language="javascript">
  5. function startActions()
  6. {
  7. thisOne();
  8. setTimeout(thatOne, 3000);
  9. }
  10.  
  11. function thisOne()
  12. {
  13. document.getElementById("quote").innerHTML = "Whoa!";
  14. }
  15.  
  16. function thatOne()
  17. {
  18. thisQuote = document.getElementById("quote2");
  19. thisQuote.style.backgroundColor = "#82b1ff";
  20. alert("double whoa!");
  21. }
  22. </script>
  23.  
  24. </head>
  25. <body bgcolor = "#89ffcc">
  26. <h1>Home page</h1>
  27. <p id = "quote">"An inspirational quote to blow your mind."</p>
  28. <p id = "quote2">"Another inspirational quote from Mr Parmar!"</p>
  29. <button onclick = "startActions();">Click me</button>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement