ceren savaş
ceren savaş

Reputation: 1

CSS - Can't include .ttf file

I want to use fontlero font for my page and I downloaded the .ttf file. And I include it in my main CSS but this gave me some other font. here is my css code:

@font-face {
font-family: FONTLERO;
src: url(fonts/FONTLERO.TTF);
}

.customfont { 
font-family: "FONTLERO";
src: url('../fonts/FONTLERO.TTF') format('embedded-opentype'),
url('../fonts/FONTLERO.TTF') format('opentype');
}

.story h1 {
font-family: FONTLERO;
font-size: 120px;
}

Upvotes: 0

Views: 43

Answers (1)

PrathapG
PrathapG

Reputation: 789

Path should be inside the CSS folder like below

css/fonts/FONTLERO.TTF

Upvotes: 1

Related Questions