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