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