Adding anchor link properties

Styling anchor links for when hovered, active, already visited and when first seen

by Alan Jones

HTML

<div id="wrapper">
  I want to go <a href="http://www.pousadalagamar.com.br/" target="new">here</a>!
</div>

CSS

@import 'https://fonts.googleapis.com/css?family=Luckiest+Guy';
#wrapper {font-family: 'Luckiest Guy', cursive; font-size:1.8em; margin-top: 50px; text-align:center; }
a { text-decoration:none; color:red;}
a:hover { text-decoration:underline;}
a:visited { color:blue; text-decoration:none;}
a:active { color:yellow; }