In my CSS I put the Poiret One font in the menu of my site. But when I open the phone, the font is totally different.
MobileMenu
MyCSSlookslikethis:
.menua{font-family:'PoiretOne',cursive;}
AndIimportthefontthisway:
<linkhref="https://fonts.googleapis.com/css?family=Poiret+One" rel="stylesheet">
Does anyone know how I can make it load the font correctly on mobile?
@edit I'll put more code to help
<head>
<title>Avance Sistemas e Consultoria</title>
<link rel="shortcut icon" href="view/img/favicon.ico" type="image/x-icon">
<link rel="icon" href="view/img/favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poiret+One" rel="stylesheet">
<script type="text/javascript" src="view/js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="view/js/bootstrap.js"></script>
<link rel="stylesheet" href="view/css/bootstrap.min.css">
<link rel="stylesheet" href="view/css/styleGlobal.css">
<link rel="stylesheet" href="view/css/styleCellphone.css">
<link rel="stylesheet" href="view/css/fontawesome-all.css">
<link rel="stylesheet" href="view/css/animate.css">
</head>
-
@media(max-width: 1080px) {
.menu a{
font-family: 'Poiret One', cursive;
font-size: 35px;
}