Link-Demo

Ich bin ein ganz normaler Link zu Apple

Ich bin auch ein ganz normaler Link zur Süddeutschen Zeitung

Ich gehe auch zu Apple

Hier der dazugehörige CSS-Code

a:link {
	text-decoration:underline;
	color:red;
}
a:visited {
	text-decoration: none; 
	color:#999;
}
a:hover {
	background-color:red;
	color:white;
}
a:active {
	background-color:blue;
	color:white;
}
a:focus {
	background-color:green;
	color:white;
	border:3px solid black;
}