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