How to set HTML link color with CSS

1 Answer

0 votes
<!DOCTYPE html>
<head>
    <style>
        a:link {
            color: lightcoral;
            background-color: transparent;
            text-decoration: none;
        }
    </style>
</head>
<html>
    <body>

        <p><a href="https://www.seek4info.com">Click To Visit Seek4Info</a></p>

    </body>
</html>

 



answered Dec 8, 2018 by avibootz

Related questions

1 answer 223 views
223 views asked Jul 14, 2016 by avibootz
1 answer 298 views
1 answer 323 views
323 views asked May 22, 2021 by avibootz
1 answer 293 views
2 answers 362 views
2 answers 310 views
...