Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  4.  
  5.  
  6. </head>
  7. <body>
  8. <section id="kolor">
  9. <div class="move">
  10. <input type="button" value="Wstecz" onClick="history.back();" />
  11. <input type="button" value="Dalej" onClick="history.forward();" />
  12.  
  13. </div>
  14. <div class="color">
  15. <input id="red" type="button" value="red" onclick="red()"; />
  16. <input id="blue" type="button" value="blue" onclick="blue()"; />
  17. <input id="green" type="button" value="green" onclick="green()"; />
  18.  
  19.  
  20.  
  21.  
  22. </section>
  23.  
  24. <script>
  25. function red(){
  26. document.getElementById("kolor").style.background-color = "red";
  27.  
  28. }function blue(){
  29. document.getElementById("kolor").style.background-color = "blue";
  30.  
  31. }function green(){
  32. document.getElementById("kolor").style.background-color = "green";
  33.  
  34. }
  35. </script>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement