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