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