/* css for demonstrating the use of pesudo-classes for styling links */ a:link { color: green; } a:visited { color: orange; } a:focus { color: red; } a:hover { background: gray; } a:active { color: white; }