Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <h1 id="tytul">TEN TEKST ZMIENI KOLOR</h1><hr>
  11. Podaj rozmiar tekstu w procentach
  12. <p>Przyciski zmieniaja kolor naglowka</p>
  13. <button id="red" onclick="kol('red');">&nbsp;</button>
  14. <button id="blu" onclick="kol('blue');">&nbsp;</button>
  15. <button id="gre" onclick="kol('green');">&nbsp;</button>
  16.  
  17. <script>
  18. function kol(kolor){
  19. var h1 = document.getElementById('tytul');
  20. h1.style.color = kolor;
  21. }
  22. </script>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement