html - How Do I Use CSS to Set the Color of An ALink? -


i’m trying use css set color of alink i’m not succeeding.

obviously i’m doing wrong after having screwed around seemingly trivial problem still have no clue i’m doing wrong.

here’s html /css …

<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 explain me i’m doing wrong and, more importantly, how fix immensely appreciate …

simply have remove space rgb (240, 180, 50) rgb(240, 180, 50).

see demo.


Comments

Popular posts from this blog

ios - UICollectionView Self Sizing Cells with Auto Layout -

node.js - ldapjs - write after end error -

DOM Manipulation in Wordpress (and elsewhere) using php -