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