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