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