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