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