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