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