Use on the webTotal Use [ 3417 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/8d6e4c49d0307cd0f0911330da79312f?family=Francker+W06+Condensed+Semibold" 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/8d6e4c49d0307cd0f0911330da79312f?family=Francker+W06+Condensed+Semibold);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Francker W06 Condensed Semibold";
src: url("https://db.onlinewebfonts.com/t/8d6e4c49d0307cd0f0911330da79312f.eot");
src: url("https://db.onlinewebfonts.com/t/8d6e4c49d0307cd0f0911330da79312f.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/8d6e4c49d0307cd0f0911330da79312f.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/8d6e4c49d0307cd0f0911330da79312f.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/8d6e4c49d0307cd0f0911330da79312f.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/8d6e4c49d0307cd0f0911330da79312f.svg#Francker W06 Condensed Semibold")format("svg");
}
2CSS rules to specify fonts
font-family: "Francker W06 Condensed Semibold";