CSS Visited Link Example :
<!DOCTYPE html>
<html>
<head>
<title> kod4u </title>
<style type="text/css">
a:link{
background-color:orange;
}
a:visited{
background-color:blue;
}
</style>
</head>
<body>
<h1> Visited Link Example </h1>
<p> Here we use link tag < a > with visited in our web pages </p>
<a href="#" target="_blank"> This is a link </a>
</body>
</html>
OUTPUT<html>
<head>
<title> kod4u </title>
<style type="text/css">
a:link{
background-color:orange;
}
a:visited{
background-color:blue;
}
</style>
</head>
<body>
<h1> Visited Link Example </h1>
<p> Here we use link tag < a > with visited in our web pages </p>
<a href="#" target="_blank"> This is a link </a>
</body>
</html>
No comments:
Post a Comment