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