Menu

CSS TUTORIALS - CSS - Links

CSS - Links

ADVERTISEMENTS


<style type="text/css">
a:link {color: #000000}
a:visited {color: #006600}
a:hover {color: #FFCC00}
a:active {color: #FF00CC}
</style>

ADVERTISEMENTS


<style type="text/css">
a:link {color:#000000}
</style>
<a href="/html/index.htm">Black Link</a>

ADVERTISEMENTS

Black Link


<style type="text/css">
a:visited {color: #006600}
</style>
<a href="/html/index.htm">Click this link</a>

Click this link


<style type="text/css">
a:hover {color: #FFCC00}
</style>
<a href="/html/index.htm">Bring Mouse Here</a>

Bring Mouse Here


<style type="text/css">
a:active {color: #FF00CC}
</style>
<a href="/html/index.htm">Click This Link</a>

Click This Link