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