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