Guest User

Untitled

a guest
Sep 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.  
  5. <!--
  6.  
  7.  
  8.  
  9. -->
  10.  
  11.  
  12.  
  13. <meta charset="utf-8">
  14. <meta name="viewport" content="width=device-width">
  15. <title>querySelector and querySelector example 1</title>
  16. </head>
  17. <body>
  18. <button onclick="firstLiClassRedInUl();">Select first li of class red and color it in red</button>
  19. <br>
  20. <button onclick="allLisInUlOfClassNav();">Underline All li in a ul of class nav</button>
  21.  
  22. <ul class="nav">
  23. <li>Home</li>
  24. <li class="red">Products</li>
  25. <li>About</li>
  26. </ul>
  27. Another list:
  28. <ul>
  29. <li>Apple</li>
  30. <li class="red">Cherries</li>
  31. <li>Oranges</li>
  32. </ul>
  33. </body>
  34. </html>
Add Comment
Please, Sign In to add comment