Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

Firefox 3.6.13 not displaying Fonts from Google Webfonts styled in CSS

  • 1 ответ
  • 50 имеют эту проблему
  • 1 просмотр
  • Последний ответ от cor-el

more options

HTML Code in <head>

<link type="text/css" rel="stylesheet" 
href="http://fonts.googleapis.com/css?family=Tangerine">


CSS code

h1 { font-family: 'Tangerine', serif;
        color: navy;
        text-align: center;
        font-size: 50px;
    }
HTML Code in <head> <pre><nowiki><link type="text/css" rel="stylesheet" href="http://fonts.googleapis.com/css?family=Tangerine"> </nowiki></pre> CSS code <pre><nowiki>h1 { font-family: 'Tangerine', serif; color: navy; text-align: center; font-size: 50px; } </nowiki></pre>

Изменено cor-el

Все ответы (1)

more options

Works for me:

data:text/html;charset=utf-8,
<html><head>
<link type="text/css" rel="stylesheet" 
href="http://fonts.googleapis.com/css?family=Tangerine">
<style>
h1 { font-family: 'Tangerine', serif; color: navy; text-align: center; font-size: 50px; }
</style>
</head>
<body>
<h1>abcdefghijklmonpqrstuvwxyz</h1>
</body>
</html>