Currently, my website has a navigation bar with links that turn white after being clicked or visited, but I am struggling to make them white initially. Here is the code snippet for my HTML:
<nav>
<ul>
<li><a href="index.html"> Home </a></li>
</ul>
</nav>
Here is how my CSS is set up:
nav {font:white; background-color: #474644; }
I need assistance in making the links white without any prior visits. It's important to note that there are other links in paragraphs and footers on my website that should not be affected.