Hyperlink Functionality

Hyperlinks have a light blue color to them and recieve underlines when hovered over. If the link has been previously visited, they are colored the same as the paragraph text, but keep the underlines.

This is a hyperlink that goes somewhere you've never been before, so it's not like the one below. Hover for underline.

This is a hyperlink that has already been visited.


Relevant HTML

<p><a href="#">Hyperlink To Nowhere</a></p>

Relevant CSS

#content a
{
	text-decoration:none;
	color:#4b76ec;
}

#content a:hover
{
	text-decoration:underline;
	color:#0000ff;
}

#content a:visited
{
	text-decoration:underline;
	color:#333333;
}

« Back to Functionality Index