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