Wednesday 26 March 2014

How To Make a Link Underline on Hover?

A link which is underlined when hover really looks good.

Take a look at these sites FacebookGoogleTwitter links in these websites are underlined on hover.

Now take a look at this website The Site Wizard, now you see the difference.

So Here's your code.





<html>
<head><title>Link</title>
<style>
a {text-decoration:none}
a:hover {text-decoration:underline}
</style>
</head>

<body>
<a href="www.facebook.com/VatsalTheHacKer">Follow Me</a>
</body>

</html>



There you go.

Wanna know how to make a full page underline on hover with just a piece of code? Click Here

Follow Me On My Facebook Account.

No comments:

Post a Comment