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