0

Importing the 'Droid Arabic Naskh' early accesss Google font into my CSS stylesheet, however, no matter how I import it, it doesn't appear to load. I'm currently using XAMPP localhost for this.

HTML

<head>
    <link href="https://fonts.googleapis.com/earlyaccess/droidarabicnaskh.css" rel="stylesheet">
    <link href="css/style.css" type="text/css" rel="stylesheet">
</head>

CSS

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: #406e8e;
    font-family: 'Droid Arabic Naskh', serif;
}
Sanph
  • 11
  • 2

1 Answers1

0

It is not right to link the used font using a html link tag. It is not for that purpose. Instead use css. Here is a question similar to yours.

Geff
  • 49
  • 2
  • 12