I’ve been attempting to change the color of an ALink using CSS, but it seems like I just can’t get it right.
It’s clear that I’m missing something, as I’ve spent quite a bit of time tinkering with this seemingly simple issue and still can’t figure out what’s going wrong.
Below is the snippet of HTML/CSS code in question:
<html>
<head>
<title>ALink Test</title>
<style type="text/css">
a.Home:link{
text-decoration:none;
color:rgb (240, 180, 50);
}
</style>
</head>
<body>
<a class="Home" href="http://www.subudnewyork.org/">Home</a>
</body>
</html>
If someone could shed some light on where I'm going astray and, more importantly, provide guidance on how to rectify the issue, I would greatly appreciate it...