The link text is displaying in a persistent purple color, despite my attempts to change it to white. I have experimented with adding nav:link and nav:active, but the text reverts to the default color without any CSS styling applied.
I have included the following CSS code:
nav{
font-family: sans-serif;
font-weight: bold;
font-size: 30px;
text-align: center;
word-spacing: 300px;
color: #edf5e1;
background-color: #05386b;
text-decoration: none;
}
With the following HTML markup:
<nav>
<a href="">Home</a>
<a href="">Projects</a>
<a href="">About</a>
<a href="">Contact</a>
</nav>
I am aiming for all text to be white without any underlines.