Uses

Links are clickable text, images, or objects that takes the user to another part of the site.

Styles

The default link color on a light background is #a51417 with a hover state of #EEE. The default link color on a dark background is #DEDEDB or #FFF with a hover state of #999. There should be no underlining of links on default or hover states.

Examples

The above shows the footer on the School of Medicine site. Note the different links colors on different colored backgrounds.

Code

HTML
<a href="#">Link</a>
CSS
a { color: #A51417; text-decoration: none; } a:hover { color: #717171; }