My html5 code for my links are written like this
<nav class="firstlinks">
<a href="Strengthtraining.html"> Strength training</a>
<a href="hypertrophy.html"> hypertrophy training</a>
<a href="endurance.html"> endurance training</a>
</nav>
My css3 code for my links are written like this
a {
Color: gold;
Background-color: black;
Padding: 1% 1.5%;
Margin-right: 5%;
Boreder-radius: 50%;
Border: 1px solid black;
Text-decoration: none;
}
a:visited{
Color: gray;
}
a:hover{
Color: green;
}