HTML CSS examples for CSS Widget:Color
Set CSS link color
<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 & Activities</a> </dd> <dd> <a href="">Sports & Athletics</a> </dd> <dd> <a href="">Entertainment & Attractions</a> </dd> <dd> <a href="">Philosophy & Society</a> </dd> </dl> </body> </html>