Change the text color for the visited link from red to green.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

index.html

<!DOCTYPE html>
<html>
  <head>
    <title>Best resources</title>
    <style>
      a:visited {
        color: red;
      }
    </style>
  </head>
  <body>
    <h2>Where can I study JS?</h2>
    <a href="https://js.coderslang.com">Here</a>
  </body>
</html>