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