0
The font does not change the family only the width on the front and shows no error in the console!
@import url("https://fonts.googleapis.com/css?family=Ubuntu");
.menu-vin li a{
display:block;
text-decoration: none;
font-family: 'Ubuntu', sans-serif;
}
<ul class="list-inline menu-vin">
<li class="list-inline-item"><a href="/">INICIO</a></li>
<li class="list-inline-item"><a href="/quemsomos">QUEM SOMOS?</a></li>
<li class="list-inline-item"><a href="/celulas">CÉLULAS</a></li>
<li class="list-inline-item"><a href="/contato">CONTATO</a></li>
</ul>
@import url("https://fonts.googleapis.com/css?family=Ubuntu"); .menu-vin li a{ display:block; text-decoration: none; font-family: 'Ubuntu', sans-serif; }
It may be a problem with class hierarchy since you are using WP, Temta put
font-family: 'Ubuntu', sans-serif !important;
that must resolve– hugocsl
also did not give!
– Willian Fortes
Try calling this source in a separate file. Create a new HTML from scratch and import Font-family to see if it goes, this eliminates some possibilities
– hugocsl
in the stackoverflow editor it no longer worked
– Willian Fortes
I could only make direct import of the link
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
using @import didn’t work here either...– hugocsl
I’ve tried it so it didn’t work either!
– Willian Fortes