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