Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

Firefox 3.6.13 not displaying Fonts from Google Webfonts styled in CSS

  • 1 antwoord
  • 50 hierdie probleem
  • 1 view
  • Laaste antwoord deur 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>

Gewysig op deur cor-el

All Replies (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>