Search This Blog

CSS Link With Hover Example

CSS Link With Hover Example :
<!DOCTYPE html>
<html>
<head>
<title> kod4u </title>
<style type="text/css">
a:link{
background-color:orange;
}

a:hover {
background-color:white;
}
</style>
</head>
<body>
<h1> Link With Hover Example </h1>
<p> Here we use link tag < a > with hover in our web pages </p>
<a href="#" target="_blank"> This is a link </a>
</body>
</html>
OUTPUT
CSS Link With Hover Example

No comments:

Post a Comment