Monday, November 30, 2009

11-30-09

1. What are the four different types of links. Write the definition for each style link.
  • a:link - a normal, unvisited link
  • a:visited - a link the user has visited
  • a:hover - a link when the user mouses over it
  • a:active - a link the moment it is clicked
2.What are some examples of Text Decoration and Background Color Links.
a:active {text-decoration:underline}
a:visited {text-decoration:none}

a:hover {text-decoration:underline}
a:visited {background-color:#FFFF85;}
a:hover {background-color:#FF704D;}
a:active {background-color:#FF704D;}


3. After answering the questions, click on the try it yourself button and see how it works.

No comments:

Post a Comment