Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.  
  5.  
  6.  
  7. <body>
  8.  
  9. <p id="Tekstas">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
  10.  
  11. <div id="myDiv"></div>
  12. <br>
  13.  
  14. <button type="button" onclick="Geltona()">Geltona</button>
  15.  
  16. <script>
  17. function Geltona() {
  18. document.getElementById("Tekstas").style.color = "#FFFF00";
  19. }
  20. </script>
  21.  
  22. <button type="button" onclick="Zalia()">Žalia</button>
  23.  
  24. <script>
  25. function Zalia() {
  26. document.getElementById("Tekstas").style.color = "#7CFC00";
  27.  
  28. }
  29. </script>
  30. <button type="button" onclick="Raudona()">Raudona</button>
  31.  
  32.  
  33.  
  34.  
  35. <script>
  36. function Raudona() {
  37. document.getElementById("Tekstas").style.color = "#ff0000";
  38. }
  39. </script>
  40.  
  41.  
  42.  
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement