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