wildanfuady

Untitled

Nov 8th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. Mengubah Properti CSS dengan Javascript
  5. </title>
  6. </head>
  7. <body>
  8. <p style="color: green;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptates porro nam ea incidunt deleniti nostrum nesciunt cumque, laborum laboriosam eligendi rerum a veniam vitae suscipit totam minima explicabo doloremque libero.</p>
  9.  
  10. <button onclick="changeColor()">Ubah Warna</button>
  11.  
  12. <script>
  13. // membuat function di javascript
  14. // formatnya nggak boleh ada spasi, boleh pakai underscore
  15. function changeColor(){
  16. var kalimat = document.getElementsByTagName('p');
  17. kalimat[0].style.color = "blue";
  18. kalimat[0].style.fontWeight = "bold";
  19. }
  20. </script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment