Set CSS link color - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Color

Description

Set CSS link color

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">

a:link
{
   color:#FFFAFA;
   text-decoration:none;<!--from w w  w  .j a  va2s .  c  o  m-->
   background-color:#778899;
}


      </style> 
 </head> 
 <body> 
  <dl> 
   <dd> 
    <a href="">Personal Infomration</a> 
   </dd> 
   <dd> 
    <a href="">Education, Employment &amp; Activities</a> 
   </dd> 
   <dd> 
    <a href="">Sports &amp; Athletics</a> 
   </dd> 
   <dd> 
    <a href="">Entertainment &amp; Attractions</a> 
   </dd> 
   <dd> 
    <a href="">Philosophy &amp; Society</a> 
   </dd> 
  </dl>  
 </body>
</html>

Related Tutorials