Firefox 3.6.13 not displaying Fonts from Google Webfonts styled in CSS
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>
Променено на
Всички отговори (1)
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>