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