Use on the webTotal Use [ 6591 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/6ee6c4c162480b404eb420b4202be244?family=FHA+Condensed+French+NC" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/6ee6c4c162480b404eb420b4202be244?family=FHA+Condensed+French+NC);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "FHA Condensed French NC";
src: url("https://db.onlinewebfonts.com/t/6ee6c4c162480b404eb420b4202be244.eot");
src: url("https://db.onlinewebfonts.com/t/6ee6c4c162480b404eb420b4202be244.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/6ee6c4c162480b404eb420b4202be244.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/6ee6c4c162480b404eb420b4202be244.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/6ee6c4c162480b404eb420b4202be244.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/6ee6c4c162480b404eb420b4202be244.svg#FHA Condensed French NC")format("svg");
}
2CSS rules to specify fonts
font-family: "FHA Condensed French NC";