How to use CSS Links

A person can style the links using CSS.

Links can be designed depending on their states:

  1.  a: link– normal, unvisited link by the user
  2.  a: visited– link by the user
  3.  a: hover– a link which changes it color when the user takes the mouse over it.
  4. a: active– a link which shows its color when it is just clicked.

Try the following source code using links.
[html]
Here is a link

[/html]
You can even try different CSS properties in these links.

Leave a Comment