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