我有这个:

←医疗设备解决方案

但是,将Lato用作以下内容时,不会显示箭头:

<link href="https://fonts.googleapis.com/css?family=Lato:400,400i,700,700i&amp;subset=latin-ext" rel="stylesheet">

我也有,以防万一:

<meta charset="utf-8">

箭头字符显示为一个奇怪的符号。这可能是什么问题?谢谢!

最佳答案

对我有用,也许您有错字?下次分享您的代码


html {
  font-family: lato;
} 

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900" rel="stylesheet">
    </head>
    <body>
      <p>&larr; Medical Device Solutions</p>
   </body>
  </html>

09-25 17:30