Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Przykład 57 - Inne właściwości elementów</title>
  6.  
  7. <style>
  8. .link {
  9. text-decoration: none;
  10. }
  11.  
  12. .red {
  13. color: red;
  14. }
  15.  
  16. .green {
  17. color: green;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22.  
  23. <h1>Przykład 57 - Inne właściwości elementów</h1>
  24.  
  25. <ul id="list">
  26. <li>Element list 1</li>
  27. <li>Element list 2</li>
  28. <li>Element list 3</li>
  29. <li>Element list 4</li>
  30. <li>Element list 5</li>
  31. <!-- komentarz HTML --></ul>
  32.  
  33. <script src="js/scripts.js"></script>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement