index.html 858 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Lesson-2</title>
  7. </head>
  8. <body>
  9. <p></p>
  10. <a class="link" id="id" style="color: red !important" href=""></a>
  11. <a class="link" id="id" href=""></a>
  12. <style>
  13. * {
  14. color: green;
  15. }
  16. a {
  17. color: green;
  18. }
  19. .link {
  20. }
  21. #id {
  22. }
  23. p span {
  24. }
  25. p > span > span {
  26. }
  27. p + a {
  28. }
  29. p ~ a {
  30. }
  31. input[tipe="email"] {
  32. }
  33. a:visited {
  34. }
  35. a:hover {
  36. }
  37. a:active {
  38. }
  39. a:link {
  40. }
  41. a:focus {
  42. }
  43. ul li:nth-child() ul li:nth-child() ul li:nth-child() a::before {
  44. content: "qqq";
  45. }
  46. </style>
  47. </body>
  48. </html>