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