Highlight the link(href Tag/HTML link Tag) on click:

Highlight the link(href Tag/HTML link Tag) on click:

With the help of style sheet(CSS), we can highlight the link after click.

Write below mentioned styles in STYLE tag before HEAD Tag of page:



a:link {font-size: 11px;color:green;text-decoration: none} /* unvisited link */
a:visited {font-size: 11px;orange:orange;text-decoration: none} /* visited link */
a:hover {font-size: 11px;text-decoration: underline;color:#FF00FF;} /* mouse over link */
a:active {font-size: 11px;color:orange;text-decoration: none} /* selected link */



Write below mentioned HTML in BODY Tag of page:



Amit Kumar1


Amit Kumar2


Amit Kumar3




Post a Comment

Previous Post Next Post