Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // dom selection
  2.  
  3.  
  4. const judul = document.getElementById('judul');
  5. judul.style.color = 'red';
  6. judul.style.backgroundColor = '#ccc';
  7. judul.innerHTML = 'Sofronius';
  8.  
  9. // documenttagname
  10.  
  11. const p = document.getElementsByTagName('p');
  12.  
  13. for (let i = 0; i < p.length; i++) {
  14.     p[i].style.backgroundColor = ' lightblue';
  15. }
  16.  
  17. const h1 = document.getElementsByTagName('h1')[0];
  18. h1.style.fontSize = '50px';
  19.  
  20.  
  21. // class name
  22.  
  23. const p1 = document.getElementsByClassName('p1')[0];
  24. p1.innerHTML = 'ini diubah boss';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement