Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="stylesheet" type="text/css" href="1234.css">
  6. <title>Javascript</title>
  7. <body>
  8. <script>
  9. document.body.style.backgroundColor="#303030";
  10.  
  11. function kolor_t1(){
  12.  
  13.  
  14. document.body.style.backgroundColor="#b21d15";
  15. document.body.style.color="#000000";
  16. }
  17. function kolor_t2(){
  18. document.body.style.backgroundColor="#1b7c25";
  19. document.body.style.color="#000000";
  20. }
  21. function kolor_t3(){
  22.  
  23. document.body.style.backgroundColor="#118493"
  24. document.body.style.color="#000000";
  25.  
  26. }
  27.  
  28.  
  29.  
  30.  
  31.  
  32. </script>
  33. <div id="rectangle">
  34. <center>
  35. <input type="button" value="Czerwony" style="width: 200px; height: 200px" onClick="kolor_t1()">
  36. <input type="button" value="Zielony" style="width: 200px; height: 200px" onClick="kolor_t2()">
  37.  
  38. <input type="button" value="Niebieski" style="border-radisu:200px; width: 200px; height: 200px" onClick="kolor_t3()"
  39.  
  40. </center>
  41.  
  42.  
  43.  
  44. </div>
  45.  
  46.  
  47.  
  48.  
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement