当我尝试使用Google字体时收到消息
对Cookie或“ https://fonts.googleapis.com/css?family=Comfortaa”存储的访问请求已被阻止,因为对非直接访问的网站(第三方提供商)的所有内存访问请求都已被阻止,并且启用了页面元素的阻止。
我使用了Firefox和Chrome。
答案 0 :(得分:-1)
尝试这样的事情:
<html>
<head>
<style>
p.serif {
font-family: "Times New Roman", Times, serif;
}
</style>
</head>
<body>
<p class="serif">This is a paragraph, shown in the Times New Roman font.</p>
</body>