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