BODY {
color : Black;
background-color : White;
font-family : Arial, Helvetica;
font-size : x-small;
}
A {
color : #990000;
text-decoration : none;
}
A:HOVER {
color : #CC0033;
text-decoration : none;
}
.nav {
color : #990000;
text-decoration : none;
border : 1px solid White;
width : 100px;
}
.nav:hover {
color : #CC0033;
text-decoration : none;
border : 1px solid #CCCCCC;
width : 100px;
}
.thispage {
color : #666666;
border : 1px solid #CCCCCC;
width : 100px;
}
|
|
<html>
<head>
<title>CSS Navigation</title>
<link rel="stylesheet" href="nav.css" type="text/css">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<p><a href="#" class="nav">Home
page</a></p>
<p class="thispage">You are
here</p>
<p><a href="#" class="nav">Contact
me</a></p>
</body>
</html>
|