Seems like you're just trying to gain points. The problem with that is people like that will detract from this site and possible ruin it for the rest of us. We come here to find intriguing code snippets, not something taken from a "beginners guide to _language_here_"
______________________
// a sphincter says what?
According to me, just basic CSS.
-----------------------
http://jiart.org/
My digital playground with it's own sandbox.
Well anyway, I love programming
can you provide an HTML example of how you would use this code?
Regards,
Kumar S
GuyFromChennai.com
<html>
<head>
<!-- Styles for Opera and other browsers -->
<style type="text/css" media="screen">
a {
color: #358;
text-decoration: none;
}
a span {
color: #999;
}
a:hover {
color: #c80;
}
a:hover span {
color: #555;
}</style>
</head>
<body>
<a href="#">teasdasdasdasd</a>
</body>
</html>