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