Hi everyone I made a navigation for my website. I just like to change the color of my links when I go to another page. For example I click the "about" then I will go to about page I like the about link will turn to red when I am in the about page.
How can I do that? Thank you!
Here the codes
html
<nav>
<ul>
<li><a href="index.htm">Home</a></li>
<li><a href="about.htm">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Creatives For Less</a></li>
<li><a href="#">Blogs</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
CSS:
nav {
float: right;
margin-top: 13px;
margin-right: 40px;
}
nav ul {
font-family: josefin;
list-style-type: none;
font-size: 11pt;
text-transform: uppercase;
}
nav li {
display: inline;
padding-left: 15px;
}
nav li a{
text-decoration: none;
color: #0ff;
}
nav li a:hover, a:active {
color: #fff;
}