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