Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <title>Dom Selection</title>
  4. <style>
  5. * {
  6. border: 2px solid #dedede;
  7. padding: 15px;
  8. margin: 15px;
  9. }
  10. html {
  11. margin: 0;
  12. padding: 0;
  13. }
  14. body {
  15. max-width: 600px;
  16. margin: 30px auto;
  17. font-family: sans-serif;
  18. color: #333;
  19. }
  20.  
  21. </style>
  22. </head>
  23. <body>
  24.  
  25. <h1 id="judul">Hello World</h1>
  26. <div id="container">
  27. <section id="a">
  28. <p class="p1" onclick="">paragraf 1</p>
  29. <a href="#">LINK</a>
  30. <p class="p2">paragraf 2</p>
  31. <p class="p3">paragraf 3</p>
  32. <p class="p4">paragraf 4</p>
  33.  
  34. </section>
  35. <section id="b">
  36. <p>paragraf 5</p>
  37. <ul>
  38. <li class="">item 1</li>
  39. <li>item 2</li>
  40. <li>item 3</li>
  41. </ul>
  42. </section>
  43. </div>
  44.  
  45. <script src="script.js"></script>
  46.  
  47. </body>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement