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