Hi Paul,
I checked your file, and somehow you didn't use the font you included anywhere in the CSS files ; you should include a
font-family command in one of the elements defined in the CSS.
From what I understood of your aim, it should be in
h1 :
Code:
h1 {
font-family: "Fiolex Girls", serif;
}
If you look at the CSS files, you'll see that the only style definition on
h1 is :
Code:
h1 {font-size: 18pt}
Hope this helps,
David.