0
Welcome to the Stackoverflow!
I used exactly the same css that you made available and is working normally.
The only difference is a ;
that was missing on the line 7
in color: #315e8a
body {
font-family: "K2D", sans-serif;
}
a:link, a:active, a:visited {
color: #315e8a;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
<a href="#teste">Teste</a>
Try to offer as much detail as you can about your problem and preferably choose to always share the code instead of images, @Matheus. So it will be easier for users to offer any kind of help.
– Caio de Paula Silva
Because there’s one
;
(semicolon) on line 7– Valdeir Psr