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