Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/33.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 移动设备上不显示谷歌字体_Html_Css_Fonts - Fatal编程技术网

Html 移动设备上不显示谷歌字体

Html 移动设备上不显示谷歌字体,html,css,fonts,Html,Css,Fonts,我有一个在桌面浏览器中看起来很完美的来源,但是当我在手机上查看时,我得到了另一个不同的来源。你知道会发生什么吗 有两段,第一段取此源 Font-family: 'Amatic SC', cursive; 第二 Font-family: 'Questrial', sans-serif; <Link href =" https://fonts.googleapis.com/css?family=Questrial "rel =" stylesheet "> <L

我有一个在桌面浏览器中看起来很完美的来源,但是当我在手机上查看时,我得到了另一个不同的来源。你知道会发生什么吗

有两段,第一段取此源

  Font-family: 'Amatic SC', cursive;
第二

Font-family: 'Questrial', sans-serif;



<Link href =" https://fonts.googleapis.com/css?family=Questrial "rel =" stylesheet ">
    <Link href = "https://fonts.googleapis.com/css?family=Academy+SC:700" rel = "stylesheet">
字体系列:'Questrial',无衬线; 第二段完美地保留了出处,第一段在电话上回顾时从出处更改


这是问题所在的页面,它在第一部分,其中说HOLA

链接不起作用,所以这里有一些提示+修复

删除链接前后的空格,并键入所有小写字母

<Link href =" https://fonts.googleapis.com/css?family=Questrial "rel =" stylesheet "> 

应该是这样的:

<link href="https://fonts.googleapis.com/css?family=Questrial" rel="stylesheet">

如果使用大写F的字体系列,则应为小写(字体系列)


现在解决问题的方法是,导入Academy+SC,但在字体系列中使用:Amatic SC,这应该是Academy SC


希望这有帮助

“现在解决你的问题,你导入Academy+SC,但在你的字体系列中你使用:Amatic SC,这应该是Academy SC”这就是问题@Dizza love you!