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